@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #f06470;
    --primary-bg: #fff0f1;
    --secondary: #222222;
    --secondary-light: #444444;
    --accent: #3a3a3a;
    --accent-dark: #2b2b2b;
    --accent-light: #555555;
    --white: #c5c4c4;
    --light: #f4f4f4;
    --gray: #777777;
    --gray-light: #e0e0e0;
    --dark: #1a1a1a;
    --text: #2e2e2e;
    --shadow: 0 4px 20px rgba(230, 57, 70, 0.15);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.10);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
    --font: 'Poppins', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font);
}

input, textarea, select {
    font-family: var(--font);
    outline: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* --- Duyuru Bandı --- */
.announcement-bar {
    background: #000;
    color: #fff;
    padding: 9px 0;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}

.announcement-bar a {
    color: #ffd166;
    font-weight: 600;
    text-decoration: underline;
}

.announcement-bar .marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.announcement-bar .marquee-track {
    display: flex;
    flex-shrink: 0;
    min-width: 100%;
    animation: marqueeScroll 20s linear infinite;
}

.announcement-bar .marquee-track i {
    margin-right: 5px;
    color: rgba(255,255,255,0.85);
    vertical-align: middle;
    position: relative;
    top: 4px;
}

.announcement-bar .ann-sep {
    opacity: 0.4;
    margin: 0 6px;
    display: inline;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(30%); }
    100% { transform: translateX(-100%); }
}

/* --- Navbar --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.2);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 20px;
}

.hero-img {
    max-width: 49%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(10, 5, 5, 0.486));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.navbar-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    box-shadow: var(--shadow);
}

.navbar-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-logo .logo-text .logo-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.5px;
}

.navbar-logo .logo-text .logo-sub {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo .logo-text .logo-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-logo .logo-text .logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-menu a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--primary);
}

.navbar-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    border-radius: 2px;
}

.navbar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow);
}

.navbar-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), #9b0000) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4) !important;
}

.hamburger {
    display: none;
    background: var(--white);
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Butonlar --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.45);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-dark);
}

.btn-white:hover {
    background: var(--primary-bg);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

/* --- Section Başlıkları --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(230, 57, 70, 0.12);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1.5px solid rgba(230, 57, 70, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Hero Section --- */
.hero {
    min-height: 91.5vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #2a2a2a;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.12);
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoomIn 7s ease-out forwards;
}

.hero-slide.leaving {
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroZoomOut 1.8s ease-in forwards;
}

/* Giriş: zoom-in + hafif pan */
@keyframes heroZoomIn {
    0%   { transform: scale(1.12) translateX(2%); filter: brightness(0.7); }
    30%  { filter: brightness(1); }
    100% { transform: scale(1.0)  translateX(0%); filter: brightness(1); }
}

/* Çıkış: hafif zoom-out + karartma */
@keyframes heroZoomOut {
    0%   { transform: scale(1.0); filter: brightness(1); opacity: 1; }
    100% { transform: scale(0.96); filter: brightness(0.5); opacity: 0; }
}

/* Her slide farklı yönden gelsin */
.hero-slide:nth-child(3n+1).active { animation-name: heroZoomIn; }
.hero-slide:nth-child(3n+2).active { animation-name: heroZoomIn2; }
.hero-slide:nth-child(3n+3).active { animation-name: heroZoomIn3; }

@keyframes heroZoomIn2 {
    0%   { transform: scale(1.12) translateX(-2%); filter: brightness(0.7); }
    30%  { filter: brightness(1); }
    100% { transform: scale(1.0)  translateX(0%); filter: brightness(1); }
}

@keyframes heroZoomIn3 {
    0%   { transform: scale(1.15) translateY(2%); filter: brightness(0.6); }
    30%  { filter: brightness(1); }
    100% { transform: scale(1.0)  translateY(0%); filter: brightness(1); }
}

.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.226) 0%, rgba(50, 30, 30, 0.233) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 71, 0.089) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid rgba(230, 57, 70, 0.4);
    color: #ff9999;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--primary-light);
    display: block;
}

.hero-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-placeholder {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(230,57,70,0.2), rgba(230,57,70,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(230,57,70,0.3);
    position: relative;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 1px dashed rgba(230,57,70,0.2);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image-placeholder .cup-icon {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(230,57,70,0.4));
}

/* --- İstatistikler --- */
.stats {
    background: linear-gradient(135deg, #363636 0%, #646363 50%, #615757 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.stat-item .stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-item .stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* --- Neden Biz --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 57, 70, 0.15);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.why-card:hover .card-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* --- Ürünler --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.3);
}

.product-image {
    height: 240px;
    background: linear-gradient(135deg, var(--primary-bg), #ffe0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-info p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
}

.product-info .product-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}

.product-info .product-link:hover {
    gap: 9px;
}

/* Ürün kartı kategori etiketi */
.product-category-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}
.product-category-label i {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Tıklanabilir ürün kartı (urunler.php) */
a.product-card.product-card-clickable {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.product-card.product-card-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.3);
}
a.product-card.product-card-clickable:hover .product-image img {
    transform: scale(1.02);
}
a.product-card.product-card-clickable:hover h3 {
    color: var(--primary);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    height: 300px;
}

.cta-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- İletişim Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.contact-item .contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item .contact-detail h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item .contact-detail p,
.contact-item .contact-detail a {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.contact-item .contact-detail a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-dark);
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Footer --- */
.footer {
    background: linear-gradient(135deg, #363636 0%, #646363 50%, #615757 100%);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-brand .footer-logo .logo-text span:first-child {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.footer-brand .footer-logo .logo-text span:last-child {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    color: rgba(255,255,255,0.7);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--primary);
    font-size: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item .icon {
    color: var(--primary-light);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--primary-light);
}

/* --- Page Hero (İç Sayfalar) --- */
.page-hero {
    background: linear-gradient(135deg, #363636 0%, #646363 50%, #615757 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 65px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.68) 0%, rgba(40,10,10,0.55) 100%);
    z-index: 0;
}

.page-hero > .container {
    position: relative;
    z-index: 1;
}

.page-hero:not(.has-bg)::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb .sep {
    color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
    color: var(--primary-light);
}

/* --- Kurumsal Sayfa --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    position: relative;
}

.about-image-placeholder {
    height: 450px;
    background: linear-gradient(135deg, var(--primary-bg), #ffe0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: white;
    padding: 8px 23px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-badge .badge-number {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-text .section-tag {
    text-align: left;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text h2 span {
    color: var(--primary);
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.about-feature .check {
    width: 22px;
    height: 22px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.founder-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-dark);
    display: flex;
    align-items: center;
    gap: 30px;
    border-left: 4px solid var(--primary);
    margin-top: 60px;
}

.founder-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.founder-info blockquote {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 12px;
}

.founder-info cite {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    font-style: normal;
}

/* --- Kategori Filtre Butonları --- */
.cat-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.cat-btn {
    padding: 9px 22px;
    border-radius: 25px;
    border: 2px solid var(--gray-light);
    background: transparent;
    color: var(--gray);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.cat-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(230,57,70,0.3);
}

@media (max-width: 768px) {
    .cat-filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .cat-filter-bar::-webkit-scrollbar {
        display: none;
    }
}

/* --- Üretim Sayfası --- */
.machines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.machine-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.machine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.3);
}

.machine-image {
    height: 200px;
    background: linear-gradient(135deg, #f0f4f8, #e8edf2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.machine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.machine-card:hover .machine-image img {
    transform: scale(1.05);
}

.machine-image .machine-placeholder {
    font-size: 4rem;
    opacity: 0.5;
}

.machine-info {
    padding: 20px;
}

.machine-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.machine-info p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

.machine-tag {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    margin-top: 16px;
    letter-spacing: 0.5px;
}

/* --- İletişim Sayfası --- */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-map-full {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    margin-top: 40px;
}

.contact-map-full iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* --- Social Pills (İletişim Sayfası) --- */
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: var(--primary-bg);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid rgba(230,57,70,0.15);
}

.social-pill:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.social-pill-green {
    background: #e8f5e9;
    color: #2d6a4f;
    border-color: rgba(45,106,79,0.15);
}

.social-pill-green:hover {
    background: #2d6a4f;
    color: white;
}

/* --- Card Icon hover SVG renk --- */
.why-card:hover .card-icon svg {
    fill: white;
}

/* --- WhatsApp Butonu --- */
.whatsapp-btn {
    position: fixed;
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    left: 72px;
    background: #1a1a1a;
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    font-family: var(--font);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #1a1a1a;
    border-left: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- Scroll to Top --- */
.scroll-top {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

/* --- Animasyonlar --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .machines-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-padding { padding: 44px 0; }
    .section-title { font-size: 1.5rem; }
    .section-desc { font-size: 0.88rem; }
    .section-header { margin-bottom: 36px; }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 4px;
    }

    .navbar-menu.open {
        display: flex;
    }

    .navbar-menu a {
        width: 100%;
        padding: 10px 14px;
        font-size: 0.88rem;
    }

    .hamburger { display: flex; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .hero-text h1 { font-size: 1.7rem; }
    .hero-text p { font-size: 0.9rem; margin: 0 auto 24px; }
    .hero-buttons { justify-content: center; }
    .hero-image-placeholder { width: 220px; height: 220px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item { padding: 14px 10px; }
    .stat-item .stat-number { font-size: 1.6rem; }
    .stat-item .stat-label { font-size: 0.78rem; }
    .stat-item .stat-icon { font-size: 1.5rem; margin-bottom: 8px; }

    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-card { padding: 24px 18px; }
    .why-card .card-icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .why-card h3 { font-size: 1rem; }
    .why-card p { font-size: 0.84rem; }

    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-image { height: 200px; }
    .product-info { padding: 10px 12px 12px; }
    .product-info h3 { font-size: 0.85rem; }
    .product-info p { font-size: 0.75rem; }

    .machines-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .machine-image { height: 140px; }
    .machine-info { padding: 12px; }
    .machine-info h3 { font-size: 0.85rem; }

    .cta-content { grid-template-columns: 1fr; gap: 28px; }
    .cta-text h2 { font-size: 1.4rem; }
    .cta-text p { font-size: 0.88rem; }
    .cta-map { height: 220px; }

    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-page-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-item { padding: 14px; }
    .contact-info h3 { font-size: 1.2rem; }

    .about-content { grid-template-columns: 1fr; gap: 28px; }
    .about-image-placeholder { height: 280px; font-size: 4rem; }
    .about-text h2 { font-size: 1.5rem; }
    .about-text p { font-size: 0.88rem; }
    .founder-card { flex-direction: column; text-align: center; padding: 24px; gap: 16px; }
    .founder-info blockquote { font-size: 0.9rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 0.76rem; }
    .footer-col h4 { font-size: 0.88rem; margin-bottom: 14px; }
    .footer-col ul li a { font-size: 0.82rem; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 20px; }
    .contact-form h3 { font-size: 1.2rem; }

    .page-hero { padding: 52px 0; }
    .page-hero h1 { font-size: 1.6rem; }
    .page-hero p { font-size: 0.88rem; }

    .btn { padding: 11px 22px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.45rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item .stat-number { font-size: 1.4rem; }
    .products-grid { grid-template-columns: 1fr; }
    .machines-grid { grid-template-columns: 1fr; }
    .btn { padding: 10px 18px; font-size: 0.84rem; }
    .contact-form { padding: 16px; }
    .section-title { font-size: 1.3rem; }
}

/* ============================================================
   ÜRÜN DETAY SAYFASI  (/urun/<slug>)
   ============================================================ */

/* Küçük hero */
.page-hero-sm {
    padding: 48px 0 36px;
    min-height: 160px;
}
.page-hero-sm .page-hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-top: 12px;
}

/* Breadcrumb (ürün detay sayfası — .breadcrumb-nav içinde) */
.breadcrumb-nav { margin-bottom: 6px; }
.breadcrumb-nav .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
}
.breadcrumb-item { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.breadcrumb-item a { color: rgba(255,255,255,0.85); }
.breadcrumb-item a:hover { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 4px;
    color: rgba(255,255,255,0.5);
}
.breadcrumb-item.active { color: #fff; font-weight: 500; }

/* Detay grid */
.product-detail-section {
    padding: 64px 0 80px;
    background: #fff;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Görsel kutusu — sağ kolonla aynı yükseklikte */
.product-detail-image-wrap {
    position: relative;
    align-self: stretch;
}
.product-detail-image-box {
    position: sticky;
    top: 100px;
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-dark);
}
.product-detail-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: none;
    position: relative;
}
.product-detail-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Sağ bilgi alanı */
.product-detail-info { display: flex; flex-direction: column; gap: 20px; }
.product-detail-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
    margin: 0;
}
.product-detail-desc {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
}

/* Teknik özellikler tablosu */
.product-specs-wrap {
    background: var(--light);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 4px;
}
.product-specs-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-specs-title i { color: var(--primary); }
.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}
.product-specs-table tbody tr {
    border-bottom: 1px solid var(--gray-light);
}
.product-specs-table tbody tr:last-child { border-bottom: none; }
.product-specs-table td {
    padding: 10px 4px;
    font-size: 0.9rem;
    vertical-align: middle;
}
.spec-label {
    color: var(--gray);
    font-weight: 500;
    width: 45%;
}
.spec-value {
    color: var(--secondary);
    font-weight: 600;
}

/* Aksiyon butonları */
.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 13px 28px;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    color: #fff;
}
.btn-outline-dark {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 11px 26px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-outline-dark:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* İlgili ürünler bölümü */
.related-products-section {
    padding: 64px 0 80px;
    background: var(--light);
}
.products-grid-4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.product-card-link:hover .product-card-title { color: var(--primary); }
.product-card-link:hover .product-card-img { transform: scale(1.05); }
.product-card-link:hover { transform: translateY(-4px); }
.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: var(--transition);
}
.product-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--light);
}
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}
.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-card-category {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.product-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    transition: color 0.2s;
    margin: 0;
}
.product-card-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}
.product-card-link-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}
.product-card-link-text i { font-size: 0.7rem; transition: transform 0.2s; }
.product-card-link:hover .product-card-link-text i { transform: translateX(4px); }

/* Responsive — ürün detay */
@media (max-width: 900px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .product-detail-title { font-size: 1.6rem; }
    .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .product-detail-section { padding: 40px 0 56px; }
    .product-detail-title { font-size: 1.35rem; }
    .product-detail-actions { flex-direction: column; }
    .btn-whatsapp, .btn-outline-dark { width: 100%; justify-content: center; }
    .products-grid-4 { grid-template-columns: 1fr 1fr; gap: 14px; }
    .page-hero-sm .page-hero-title { font-size: 1.3rem; }
}
@media (max-width: 400px) {
    .products-grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   ÜRÜN CAROUSEL — Sonsuz Döngü
   ============================================= */
.products-carousel-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    /* Kenar soluklaştırma efekti */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.products-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: productsScroll 40s linear infinite;
    will-change: transform;
}

.products-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes productsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-33.3333%)); }
}

/* Carousel içindeki kartlar sabit genişlikte */
.products-carousel-track .product-card-link {
    flex: 0 0 260px;
    width: 260px;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.products-carousel-track .product-card-link:hover {
    transform: translateY(-6px);
}

.products-carousel-track .product-card {
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: box-shadow 0.25s ease;
    background: #fff;
}

.products-carousel-track .product-card-link:hover .product-card {
    box-shadow: 0 8px 32px rgba(230,57,70,0.15);
}

.products-carousel-track .product-card-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--light);
}

.products-carousel-track .product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.products-carousel-track .product-card-link:hover .product-card-img {
    transform: scale(1.06);
}

.products-carousel-track .product-card-link:hover .product-card-title {
    color: var(--primary);
}

/* Mobil: daha küçük kart */
@media (max-width: 768px) {
    .products-carousel-track {
        gap: 16px;
        animation-duration: 30s;
    }
    .products-carousel-track .product-card-link {
        flex: 0 0 200px;
        width: 200px;
    }
    .products-carousel-wrap {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }
}

@media (max-width: 480px) {
    .products-carousel-track .product-card-link {
        flex: 0 0 170px;
        width: 170px;
    }
    .products-carousel-track {
        animation-duration: 25s;
    }
}

/* =============================================
   Fabrika Galerisi
   ============================================= */
.factory-gallery-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}
.factory-gallery-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    background: #111;
    overflow: hidden;
}
.factory-gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: flex-end;
}
.factory-gallery-slide.active {
    opacity: 1;
    z-index: 1;
}
.factory-gallery-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.factory-gallery-caption {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.factory-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    transition: var(--transition);
}
.factory-gallery-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.factory-gallery-prev { left: 14px; }
.factory-gallery-next { right: 14px; }
.factory-gallery-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 7px;
}
.fg-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.fg-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}
@media (max-width: 600px) {
    .factory-gallery-slider { aspect-ratio: 4/3; }
    .factory-gallery-btn { width: 36px; height: 36px; font-size: 0.85rem; }
    .factory-gallery-prev { left: 8px; }
    .factory-gallery-next { right: 8px; }
}
