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

/* Design tokens */
:root {
    --brand: #dc2626;
    --brand-dark: #b91c1c;
    --bg: #ffffff;
    --bg-muted: #f9fafb;
    --text: #111827;
    --text-muted: #6b7280;
    --border: #eef2f7;
    --shadow-sm: 0 2px 6px rgba(0,0,0,.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,.08);
    --radius: 12px;
    --container: 1200px;
    --section-space: 3.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #dc2626;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #dc2626;
    color: white;
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background-color: #f4f4f4;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
    border-color: #dc2626;
}

.btn-outline {
    background-color: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-outline:hover {
    background-color: #dc2626;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255,255,255,.8);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    color: #dc2626;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand);
    background: linear-gradient(180deg, #fff, #fff) padding-box, linear-gradient(90deg, rgba(220,38,38,.3), rgba(220,38,38,0)) border-box;
    border-bottom: 2px solid var(--brand);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.hero-content-overlay {
    text-align: center;
    z-index: 2;
}

.hero-content-overlay h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.hero-content-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-year {
    font-size: 1.5rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 420px;
    margin-bottom: 3rem;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 600ms ease, transform 800ms ease;
    display: grid;
    place-items: center;
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide[data-bg="gradient-red"] {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
}

.slide[data-bg="image-vacuum"] {
    background: radial-gradient(ellipse at right, rgba(220,38,38,0.15), transparent 60%), #f9fafb;
}

.slide[data-bg="image-water"] {
    background: radial-gradient(ellipse at left, rgba(185,28,28,0.15), transparent 60%), #f9fafb;
}

.slide-content {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.slide-content h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.slide-content p {
    color: #6b7280;
    margin-bottom: 1.25rem;
}

/* Slider buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.slider-btn:hover { background: rgba(0,0,0,0.7); }

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    opacity: 0.7;
}

.slider-dots button.active {
    background: #fff;
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: #dc2626;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Vision Section */
.vision-section {
    padding: 4rem 0;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.vision-philosophy {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.vision-philosophy h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.vision-philosophy p {
    color: #4b5563;
    line-height: 1.7;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.product-image {
    height: 160px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder {
    color: #9ca3af;
    font-weight: 600;
    font-size: 1.2rem;
}

.product-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1rem;
}

.product-title {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: #1f2937;
}

.product-description {
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.product-specs {
    margin-bottom: 0.75rem;
}

.spec-item {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

/* product-price kaldırıldı */

/* Categories */
.categories {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #fff;
    padding: 1.1rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    border: 1px solid var(--border);
    cursor: pointer;
}

.category-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-md); background: #fcfcfd; }

.category-icon-wrap { width: 64px; height: 64px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%); border: 1px solid #fee2e2; box-shadow: inset 0 1px rgba(255,255,255,.6); }
.category-icon { font-size: 1.75rem; line-height: 1; }

.category-card:focus-visible { outline: 3px solid #dc2626; outline-offset: 3px; }
.category-icon-wrap { transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.category-card:hover .category-icon-wrap { transform: scale(1.06); background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%); border-color: #fecaca; }

.category-card h3 {
    color: #1f2937;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .2px;
}

.category-link { display: none; }
.category-card p { display: none; }

/* açıklamalar kaldırıldı */

.category-link { display: none; }

/* link hover gereksiz oldu */

/* Company Info */
.company-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.company-details h2 {
    color: #dc2626;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.company-address p,
.company-contact p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.company-address strong,
.company-contact strong {
    color: white;
}

.company-ambitions h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.company-ambitions h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.company-ambitions p {
    color: #d1d5db;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #d1d5db;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #dc2626;
    background-color: #374151;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: #d1d5db;
}

.footer-links a:hover {
    color: #dc2626;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background-color: #f9fafb;
    margin-bottom: 3rem;
}

.page-title {
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-description {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Catalog Controls */
.catalog-controls {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.search-section {
    display: flex;
    margin-bottom: 1.5rem;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #dc2626;
}

.search-btn {
    padding: 12px 20px;
    background-color: #dc2626;
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #b91c1c;
}

.filters-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.filter-select {
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    border-color: #dc2626;
}

/* New: inputs for price range */
.price-range {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-input {
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.filter-input:focus {
    border-color: #dc2626;
}

.price-range span {
    color: #9ca3af;
}

/* Small button variant */
.btn-sm {
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 6px;
}

/* Products Section */
.products-section {
    margin-bottom: 3rem;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-info {
    color: #6b7280;
    font-weight: 500;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 8px 12px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    border-color: #dc2626;
    background-color: #fef2f2;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 10px 16px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    padding: 10px 14px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number.active,
.pagination-number:hover {
    border-color: #dc2626;
    background-color: #dc2626;
    color: white;
}

.pagination-dots {
    padding: 10px 14px;
    color: #6b7280;
}

/* Product Details */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.breadcrumb-separator {
    color: #d1d5db;
}

.breadcrumb-current {
    color: #374151;
    font-weight: 600;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    height: 400px;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background-color: #f3f4f6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    border: 2px solid #dc2626;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    color: #6b7280;
    font-size: 0.95rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
}

.old-price {
    font-size: 1.2rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.discount {
    background-color: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.color-options {
    display: flex;
    gap: 0.5rem;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.size-options {
    display: flex;
    gap: 0.5rem;
}

.size-option {
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.size-option.active,
.size-option:hover {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.quantity-btn {
    padding: 12px 16px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #f3f4f6;
}

.quantity-input {
    width: 60px;
    padding: 12px;
    border: none;
    text-align: center;
    font-size: 1rem;
    outline: none;
}

.product-meta {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.meta-label {
    font-weight: 600;
    color: #374151;
}

.meta-value {
    color: #6b7280;
}

.in-stock {
    color: #059669;
    font-weight: 600;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 3rem;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #dc2626;
    border-bottom-color: #dc2626;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.specs-table td {
    padding: 1rem 0;
}

.spec-label {
    font-weight: 600;
    color: #374151;
    width: 30%;
}

.spec-value {
    color: #6b7280;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
}

.rating-stars {
    font-size: 1.5rem;
    color: #fbbf24;
    margin: 0.5rem 0;
}

.total-reviews {
    color: #6b7280;
}

.review-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.reviewer-name {
    font-weight: 600;
    color: #374151;
}

.review-rating {
    color: #fbbf24;
}

.review-date {
    color: #9ca3af;
    font-size: 0.9rem;
}

.review-text {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #dc2626;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    color: #dc2626;
}

.info-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #6b7280;
    line-height: 1.6;
}

.social-media-section {
    margin-top: 2rem;
}

.social-media-section h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background-color: #fef2f2;
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.5rem;
}

.social-name {
    font-weight: 500;
    color: #374151;
}

/* Map Section */
.map-section {
    margin-bottom: 3rem;
}

.map-section h2 {
    color: #1f2937;
    margin-bottom: 2rem;
}

.map-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: #6b7280;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.map-content h3 {
    color: #374151;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    color: #1f2937;
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #dc2626;
    font-weight: 700;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Hero Carousel (Yeni) */
.hero-carousel {
    position: relative;
    height: 520px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-carousel .carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(10%) scale(1.02);
    transition: opacity 600ms ease, transform 800ms ease;
}

.carousel-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 1;
}

.carousel-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bg-1 { background: url('../images/hero-1.jpg') center/cover no-repeat; }
.bg-2 { background: url('../images/hero-2.jpg') center/cover no-repeat; }
.bg-3 { background: url('../images/hero-3.jpg') center/cover no-repeat; }

.carousel-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.25) 100%); }

.carousel-content { position: relative; height: 100%; display: flex; align-items: center; }
.carousel-text { max-width: 720px; color: #fff; padding: 1.25rem 1.5rem; background: rgba(0,0,0,.35); backdrop-filter: blur(2px); border-radius: 10px; }
.carousel-text h2 { font-size: 3rem; line-height: 1.1; margin-bottom: .75rem; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.carousel-text p { font-size: 1.1rem; opacity: .95; margin-bottom: 1.25rem; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.carousel-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 9999px;
    border: 2px solid rgba(255,255,255,.6);
    background: rgba(255,255,255,.15);
    color: #fff;
    backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 2;
}
.carousel-arrow:hover { background: rgba(255,255,255,.25); }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

/* Dots */
.carousel-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 9999px; border: 2px solid #fff; background: transparent; opacity: .7; cursor: pointer; }
.carousel-dots button.is-active { background: #fff; opacity: 1; }

/* Progress */
.carousel-progress { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: rgba(255,255,255,.25); }
.carousel-progress span { display: block; height: 100%; width: 0%; background: #fff; transition: width linear; }

@media (max-width: 1024px) {
    .hero-carousel { height: 460px; }
    .carousel-text h2 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    .hero-carousel { height: 420px; }
    .carousel-text { text-align: center; margin: 0 auto; }
}
@media (max-width: 480px) {
    .hero-carousel { height: 380px; }
    .carousel-arrow { width: 40px; height: 40px; }
    .carousel-text h2 { font-size: 2rem; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-placeholder {
        width: 100%;
        max-width: 400px;
    }

    .about-content,
    .vision-content,
    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .hero-slider { height: 360px; }
    .slide-content { grid-template-columns: 1fr; text-align: center; }
    .slide-content h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .filters-section {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .pagination-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-slider { height: 320px; }
    .slider-btn { width: 36px; height: 36px; }
    .slide-content h2 { font-size: 1.75rem; }
} 

/* Home category sections */
.home-categories-list { padding: 2rem 0 4rem; }
.home-category-block { margin-bottom: 2.5rem; }
.home-category-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.home-category-header h3 { margin: 0; color: #1f2937; font-size: 1.25rem; }
.home-category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }

.mini-product-card { display: block; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,.04); transition: transform .2s ease, box-shadow .2s ease; }
.mini-product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,.08); }

.mini-image { position: relative; height: 120px; background: #f3f4f6; display: grid; place-items: center; }
.mini-placeholder { color: #9ca3af; font-weight: 700; letter-spacing: .5px; }
.mini-badge { position: absolute; top: .5rem; right: .5rem; background: rgba(220,38,38,.9); color: #fff; font-size: .75rem; padding: .25rem .5rem; border-radius: 9999px; }

.mini-info { padding: .75rem .9rem; }
.mini-title { font-size: .98rem; margin: 0 0 .35rem; color: #111827; }
.mini-desc { margin: 0 0 .5rem; font-size: .9rem; color: #6b7280; }
.mini-specs { display: flex; gap: .75rem; flex-wrap: wrap; font-size: .85rem; color: #6b7280; }

@media (max-width: 480px) {
    .home-category-grid { grid-template-columns: 1fr; }
} 

/* Brand intro section */
.brand-intro { padding: 3rem 0 2.5rem; background: #f9fafb; border-top: 1px solid #f3f4f6; border-bottom: 1px solid #f3f4f6; }
.brand-title { margin-bottom: 1rem; }
.intro-highlight { text-align: center; }
.intro-highlight p { max-width: 900px; margin: 0 auto 1.25rem; }
.info-card h3 { color: #dc2626; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; gap: 1.25rem; }
.info-card { position: relative; background: #ffffff; border: 1px solid #eef2f7; border-radius: 12px; padding: 1.1rem 1.2rem; box-shadow: none; transition: transform .2s ease, border-color .2s ease, background .2s ease; height: 100%; display: flex; flex-direction: column; }
.info-card h3 { margin-bottom: .6rem; font-weight: 600; letter-spacing: .2px; color: #111827; font-size: 1.05rem; }
.info-card p:last-child { margin-bottom: 0; }
.info-card::before { content: ""; position: absolute; inset: 0 auto auto 0; height: 3px; width: 100%; background: linear-gradient(90deg, #dc2626, #f59e0b); opacity: .15; border-radius: 12px 12px 0 0; }
.info-card p { color: #6b7280; font-size: .98rem; line-height: 1.6; margin: 0 0 .75rem; }
.info-card:hover { transform: translateY(-3px); border-color: #e5e7eb; background: #fcfcfd; }

/* brand-intro özel düzen */
.info-grid.two-rows { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
.info-card.full-width { grid-column: 1 / -1; }
@media (max-width: 768px) {
  .info-grid.two-rows { grid-template-columns: 1fr; }
} 

@media (max-width: 768px) {
  .intro-highlight h2 { font-size: 1.35rem; }
} 

/* Contact page refinements */
.contact-form { border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-form .btn-primary { width: 100%; }
.contact-info .info-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-sm); }
.social-link-large { border: 1px solid var(--border); background: #fff; }
.map-container { border: 1px solid var(--border); }
.faq-item { border: 1px solid var(--border); }
.faq-question { background: #fff; }
.faq-answer { background: #fff; } 

/* Contact page layout */
.contact-hero { padding: 2.5rem 0; background: var(--bg); border-bottom: 1px solid var(--border); }
.contact-hero .page-title { margin-bottom: .5rem; }
.lead { color: var(--text-muted); max-width: 800px; }
.contact-quick { margin-top: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.quick-pill { padding: .5rem .75rem; border: 1px solid var(--border); border-radius: 9999px; color: var(--brand); background: #fff; }

.contact-section { padding: var(--section-space) 0; background: var(--bg-muted); }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.25rem; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-sm); }

.map-faq { padding: var(--section-space) 0; background: var(--bg); }
.map-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-faq-grid { grid-template-columns: 1fr; }
} 