/* ============================================
   DOĞAN OFİS – Design System & Global Styles
   ============================================ */

:root {
    /* Colors */
    --clr-bg: #fafaf8;
    --clr-surface: #ffffff;
    --clr-surface-alt: #f3f1ec;
    --clr-text: #1a1a18;
    --clr-text-muted: #6b6a65;
    --clr-text-light: #9c9b96;
    --clr-border: #e5e3dd;
    --clr-primary: #1a1a18;
    --clr-primary-hover: #333330;
    --clr-accent: #8b7355;
    --clr-accent-light: #c4a97d;
    --clr-accent-bg: #f5f0e8;
    --clr-success: #2d6a4f;
    --clr-danger: #c1121f;

    /* Typography */
    --ff-heading: 'Playfair Display', Georgia, serif;
    --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.75rem;
    --fs-4xl: 3.5rem;
    --fs-hero: clamp(2.5rem, 5vw, 4.5rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-section: clamp(4rem, 8vw, 8rem);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 200ms var(--ease-out);
    --transition-base: 350ms var(--ease-out);
    --transition-slow: 500ms var(--ease-in-out);
}

/* ============================================
   Reset & Base
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

.btn-primary:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.btn-outline:hover {
    background: var(--clr-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: var(--fs-base);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Section Utilities
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-md);
    position: relative;
    padding: 6px 20px;
    background: var(--clr-accent-bg);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 3.5vw, var(--fs-3xl));
    font-weight: 600;
    line-height: 1.2;
    color: var(--clr-text);
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--clr-border);
}

/* Unscrolled navbar on hero - white text */
.navbar:not(.scrolled) .logo-text {
    color: #fff;
}

.navbar:not(.scrolled) .logo-accent {
    color: rgba(255, 255, 255, 0.7);
}

.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.navbar:not(.scrolled) .hamburger span {
    background: #fff;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--clr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
}

.logo-text {
    font-size: var(--fs-md);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--clr-text);
}

.logo-accent {
    color: var(--clr-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-link {
    padding: 8px 18px;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--clr-text-muted);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-text);
    background: var(--clr-surface-alt);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 24, 0.85) 0%,
            rgba(26, 26, 24, 0.6) 50%,
            rgba(26, 26, 24, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 115, 85, 0.2);
    border: 1px solid rgba(196, 169, 125, 0.3);
    border-radius: var(--radius-full);
    color: var(--clr-accent-light);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-hero);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.hero-highlight {
    color: var(--clr-accent-light);
    position: relative;
}

.hero-desc {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-4xl);
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
}

.hero-actions .btn-primary:hover {
    background: var(--clr-accent-light);
    border-color: var(--clr-accent-light);
}

.hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-num {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: #fff;
    display: block;
}

.stat-label {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* ============================================
   Products
   ============================================ */

.products-section {
    padding: var(--space-section) 0;
    background: var(--clr-bg);
}

/* Category Filter - Modern Scrollable Pills */
.category-filter {
    display: flex;
    gap: 10px;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-sm);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 10px 22px;
    font-family: var(--ff-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--clr-text-muted);
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    color: var(--clr-text);
    border-color: var(--clr-accent);
    background: var(--clr-accent-bg);
}

.filter-btn.active {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
    box-shadow: 0 4px 12px rgba(26, 26, 24, 0.15);
}

/* Products Grid - Modern Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Product Card - Premium Glassmorphism */
.product-card {
    position: relative;
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s var(--ease-out) forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.03s;
}

.product-card:nth-child(2) {
    animation-delay: 0.06s;
}

.product-card:nth-child(3) {
    animation-delay: 0.09s;
}

.product-card:nth-child(4) {
    animation-delay: 0.12s;
}

.product-card:nth-child(5) {
    animation-delay: 0.15s;
}

.product-card:nth-child(6) {
    animation-delay: 0.18s;
}

.product-card:nth-child(7) {
    animation-delay: 0.21s;
}

.product-card:nth-child(8) {
    animation-delay: 0.24s;
}

.product-card:nth-child(9) {
    animation-delay: 0.27s;
}

.product-card:nth-child(n+10) {
    animation-delay: 0.3s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

/* Make product card as anchor display properly */
a.product-card {
    display: flex;
    text-decoration: none;
    color: inherit;
}

/* Product Image */
.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #fff;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-light), var(--clr-accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 24, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.overlay-text {
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
}

.product-card:hover .overlay-text {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    background: var(--clr-accent);
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.new {
    background: var(--clr-success);
}

.product-badge.sale {
    background: var(--clr-danger);
}

/* Product Info */
.product-info {
    padding: var(--space-md) var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 4px;
}

.product-name {
    font-family: var(--ff-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.product-desc {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    margin-bottom: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    flex: 1;
}

/* Product Footer */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px var(--space-lg) 14px;
    border-top: 1px solid var(--clr-border);
    margin-top: auto;
    background: rgba(243, 241, 236, 0.3);
}

.product-price {
    font-family: var(--ff-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--clr-accent);
}

.product-price-old {
    font-size: var(--fs-xs);
    color: var(--clr-text-light);
    text-decoration: line-through;
    font-family: var(--ff-body);
    font-weight: 400;
    margin-left: var(--space-xs);
}

.product-link,
.product-cta {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface-alt);
    border-radius: 50%;
    transition: all var(--transition-fast);
    color: var(--clr-text-muted);
}

.product-card:hover .product-link,
.product-card:hover .product-cta {
    background: var(--clr-primary);
    color: #fff;
    transform: translateX(4px);
}

/* ============================================
   About
   ============================================ */

.about-section {
    padding: var(--space-section) 0;
    background: var(--clr-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.about-experience {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 26, 24, 0.88);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.exp-num {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    display: block;
    color: var(--clr-accent-light);
}

.exp-text {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.about-content .section-tag {
    display: inline-block;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-text {
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-accent-bg);
    color: var(--clr-accent);
    border-radius: var(--radius-md);
}

.about-feature h4 {
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

/* ============================================
   Why Us
   ============================================ */

.why-section {
    padding: var(--space-section) 0;
    background: var(--clr-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.why-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-accent-bg);
    color: var(--clr-accent);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
}

.why-card h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.why-card p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */

.cta-section {
    padding: var(--space-section) 0;
    background: var(--clr-primary);
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--ff-heading);
    font-size: clamp(1.5rem, 3vw, var(--fs-3xl));
    color: #fff;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-md);
    margin-bottom: var(--space-2xl);
}

.cta-inner .btn-primary {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
}

.cta-inner .btn-primary:hover {
    background: var(--clr-accent-light);
    border-color: var(--clr-accent-light);
}

/* ============================================
   Contact
   ============================================ */

.contact-section {
    padding: var(--space-section) 0;
    background: var(--clr-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--clr-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-card:hover {
    background: var(--clr-accent-bg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface);
    color: var(--clr-accent);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-card h4 {
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* Form */
.contact-form {
    background: var(--clr-bg);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--clr-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-text);
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clr-text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    margin-top: var(--space-sm);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--clr-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-icon {
    background: var(--clr-accent);
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand p {
    font-size: var(--fs-sm);
    line-height: 1.8;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #fff;
}

.footer-links h4 {
    color: #fff;
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-accent-light);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Modal
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 24, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform var(--transition-base);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface-alt);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--clr-text);
    z-index: 10;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--clr-primary);
    color: #fff;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
}

.modal-category {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-sm);
}

.modal-info h2 {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.modal-desc {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.modal-specs {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--clr-bg);
    border-radius: var(--radius-md);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-sm);
    padding: 6px 0;
    border-bottom: 1px solid var(--clr-border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--clr-text-muted);
}

.spec-value {
    font-weight: 600;
    color: var(--clr-text);
}

.modal-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    margin-top: auto;
}

.price-current {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--clr-text);
}

.price-old {
    font-size: var(--fs-base);
    color: var(--clr-text-light);
    text-decoration: line-through;
}

.modal-actions {
    display: flex;
    gap: var(--space-md);
}

.modal-actions .btn {
    flex: 1;
    text-align: center;
}

/* =========================================
   Page Header (Sub-pages)
   ========================================= */

.page-header {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-surface-alt) 100%);
    border-bottom: 1px solid var(--clr-border);
}

.page-header .page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: var(--space-sm);
}

.page-header .page-desc {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    max-width: 500px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
    color: var(--clr-text-light);
}

.breadcrumb a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--clr-primary);
}

.breadcrumb span {
    color: var(--clr-text-light);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* =========================================
   Product Detail Page
   ========================================= */

.product-detail-section {
    padding: 140px 0 var(--space-3xl);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.detail-image {
    position: relative;
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.detail-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.detail-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-info {
    padding-top: var(--space-md);
}

.detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.detail-desc {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-size: 1rem;
}

.detail-specs {
    margin-bottom: var(--space-xl);
}

.detail-specs h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: var(--space-sm);
}

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

.specs-table td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.95rem;
}

.specs-table td:first-child {
    color: var(--clr-text-light);
    width: 40%;
}

.specs-table td:last-child {
    text-align: right;
    color: var(--clr-primary);
}

.detail-price-row {
    margin-bottom: var(--space-lg);
}

.detail-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.detail-old-price {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    text-decoration: line-through;
    margin-left: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 400;
}

.detail-actions {
    display: flex;
    gap: var(--space-md);
}

.not-found {
    text-align: center;
    padding: var(--space-3xl) 0;
    grid-column: 1 / -1;
}

.not-found h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.not-found p {
    color: var(--clr-text-light);
    margin-bottom: var(--space-xl);
}

/* =========================================
   Services Page
   ========================================= */

.services-section {
    padding: var(--space-3xl) 0;
}

.service-block {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-xl);
    align-items: start;
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--clr-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-block.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-block-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface-alt);
    border-radius: var(--radius-lg);
    color: var(--clr-accent);
    flex-shrink: 0;
}

.service-block-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: var(--space-sm);
}

.service-block-content p {
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
}

.service-features li {
    position: relative;
    padding-left: 24px;
    color: var(--clr-text);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-weight: 700;
}

/* =========================================
   Values Section (Hakkımızda)
   ========================================= */

.values-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-surface-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.value-card {
    padding: var(--space-xl);
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--clr-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-accent);
    opacity: 0.5;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--clr-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =========================================
   Stats Section
   ========================================= */

.stats-section {
    padding: var(--space-3xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--clr-border);
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-card-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: var(--space-xs);
}

.stat-card-label {
    color: var(--clr-text-light);
    font-size: 0.9rem;
}

/* =========================================
   Map Section
   ========================================= */

.map-section {
    padding: 0 0 var(--space-3xl);
}

.map-embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }

    /* Mobile Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--clr-surface);
        flex-direction: column;
        padding: 100px var(--space-xl) var(--space-xl);
        transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: var(--fs-xl);
        padding: 12px 24px;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 90vh;
    }

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

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }

    /* Page header */
    .page-header {
        padding: 120px 0 40px;
    }

    .page-header .page-title {
        font-size: 1.8rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-image img {
        height: 360px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-tag {
        display: block;
        text-align: center;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Product Detail */
    .product-detail-section {
        padding: 120px 0 var(--space-2xl);
    }

    .detail-actions {
        flex-direction: column;
    }

    .detail-title {
        font-size: 1.6rem;
    }

    /* Services */
    .service-block {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    /* Modal */
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        aspect-ratio: 16/10;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .modal-info {
        padding: var(--space-lg);
    }

    .modal-actions {
        flex-direction: column;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-badge {
        font-size: 0.65rem;
    }

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

/* ============================================
   Preloader
   ============================================ */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--clr-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-lg);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 60px;
    height: 60px;
    background: var(--clr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: var(--clr-border);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--clr-accent);
    border-radius: 3px;
    animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes preloaderSlide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(400%);
    }
}

/* ============================================
   Floating Buttons
   ============================================ */

.floating-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: all var(--transition-base);
    transform: scale(0);
    animation: floatBtnIn 0.4s var(--ease-out) forwards;
}

.float-btn:nth-child(1) {
    animation-delay: 0.3s;
}

.float-btn:nth-child(2) {
    animation-delay: 0.45s;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

@keyframes floatBtnIn {
    to {
        transform: scale(1);
    }
}

.float-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.float-btn-top {
    background: var(--clr-primary);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.float-btn-top.visible {
    opacity: 1;
    pointer-events: auto;
}

/* WhatsApp tooltip */
.float-btn-whatsapp::before {
    content: 'WhatsApp ile yazın';
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.float-btn-whatsapp:hover::before {
    opacity: 1;
}

/* ============================================
   CTA Enhanced
   ============================================ */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.15) 0%, transparent 60%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        transform: translate(-10%, -10%);
    }

    100% {
        transform: translate(10%, 10%);
    }
}

.cta-inner {
    position: relative;
    z-index: 1;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    padding: var(--space-section) 0;
    background: var(--clr-surface);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-md) 0 var(--space-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 360px;
    max-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--ff-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--clr-accent);
    opacity: 0.15;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    color: #f59e0b;
}

.testimonial-text {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-accent);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--clr-text);
    display: block;
}

.testimonial-role {
    font-size: var(--fs-xs);
    color: var(--clr-text-light);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonials-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-border);
    background: var(--clr-surface);
    color: var(--clr-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.testimonials-nav button:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

/* ============================================
   Brand Marquee
   ============================================ */

.brands-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-surface-alt);
    overflow: hidden;
}

.brands-marquee {
    display: flex;
    animation: marqueeScroll 25s linear infinite;
    gap: var(--space-4xl);
    width: max-content;
}

.brands-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 60px;
    padding: 0 var(--space-xl);
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-text-muted);
    opacity: 0.4;
    transition: opacity var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.brand-item:hover {
    opacity: 0.8;
}

/* ============================================
   Process / Timeline
   ============================================ */

.process-section {
    padding: var(--space-section) 0;
    background: var(--clr-bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-border), var(--clr-accent), var(--clr-border));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 88px;
    height: 88px;
    background: var(--clr-surface);
    border: 2px solid var(--clr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition-base);
    color: var(--clr-accent);
}

.process-step:hover .process-icon {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(26, 26, 24, 0.15);
}

.process-num {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--clr-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.process-step h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--clr-text);
}

.process-step p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ============================================
   Product Detail Image Zoom
   ============================================ */

.detail-image {
    cursor: zoom-in;
}

.detail-image img {
    transition: transform 0.5s var(--ease-out);
}

.detail-image:hover img {
    transform: scale(1.04);
}

/* Product footer padding fix */
.product-footer {
    padding: var(--space-md) var(--space-xl) var(--space-lg);
}

.product-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface-alt);
    border-radius: 50%;
    transition: all var(--transition-fast);
    color: var(--clr-text);
    flex-shrink: 0;
}

.product-card:hover .product-link {
    background: var(--clr-primary);
    color: #fff;
}

/* Old price in product cards */
.product-old-price {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    text-decoration: line-through;
    font-family: var(--ff-body);
    font-weight: 400;
    margin-left: var(--space-xs);
}

/* Current price in product cards */
.current-price {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-text);
}

/* ============================================
   KVKK / Cookie Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: var(--clr-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    font-size: var(--fs-sm);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    max-width: 600px;
    line-height: 1.6;
}

.cookie-banner a {
    color: var(--clr-accent-light);
    text-decoration: underline;
}

.cookie-btn {
    padding: 10px 28px;
    background: var(--clr-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--clr-accent-light);
}

/* ============================================
   Footer Enhanced
   ============================================ */

.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-light), var(--clr-accent));
}

/* ============================================
   Responsive – New Sections
   ============================================ */

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
    }

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

    .floating-buttons {
        bottom: 20px;
        right: 16px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn-whatsapp::before {
        display: none;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
        padding: var(--space-md);
    }

    .brands-marquee {
        gap: var(--space-2xl);
    }

    .brand-item {
        min-width: 120px;
        font-size: var(--fs-base);
    }
}

/* ============================================
   Categories Grid (Homepage)
   ============================================ */

.categories-section {
    padding: var(--space-section) 0;
    background: var(--clr-surface);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-accent);
}

.category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-accent-bg);
    border-radius: var(--radius-md);
    color: var(--clr-accent);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.category-card:hover .category-icon {
    background: var(--clr-accent);
    color: #fff;
}

.category-card h3 {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: var(--space-xs);
}

.category-count {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

/* ============================================
   Products Toolbar (Search & Count)
   ============================================ */

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
    max-width: 500px;
    padding: 12px 20px;
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.search-box:focus-within {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.search-box svg {
    color: var(--clr-text-muted);
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    color: var(--clr-text);
}

.search-box input::placeholder {
    color: var(--clr-text-light);
}

.product-count {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================
   Pagination
   ============================================ */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
    flex-wrap: wrap;
}

.page-btn {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--clr-text-muted);
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.page-btn:hover {
    color: var(--clr-text);
    border-color: var(--clr-text);
}

.page-btn.active {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

.page-dots {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    padding: 0 4px;
}

/* ============================================
   No Results
   ============================================ */

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    color: var(--clr-text-muted);
}

.no-results svg {
    margin-bottom: var(--space-lg);
    opacity: 0.3;
}

.no-results h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    color: var(--clr-text);
    margin-bottom: var(--space-sm);
}

/* ============================================
   Product Detail – Gallery
   ============================================ */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    padding: var(--space-2xl) 0;
    align-items: start;
}

.product-detail-grid>* {
    min-width: 0;
}

.detail-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

.detail-main-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-surface-alt);
    margin-bottom: var(--space-md);
}

.detail-main-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.detail-main-image:hover img {
    transform: scale(1.05);
}

.gallery-thumbs {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    background: var(--clr-surface-alt);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    border-color: var(--clr-text-light);
}

.gallery-thumb.active {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.2);
}

/* ============================================
   Product Detail – Info
   ============================================ */

.detail-breadcrumb-inline {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-bottom: var(--space-lg);
}

.detail-breadcrumb-inline a {
    color: var(--clr-accent);
    font-weight: 500;
}

.detail-breadcrumb-inline a:hover {
    text-decoration: underline;
}

.detail-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.5rem, 3vw, var(--fs-3xl));
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.detail-code {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-bottom: var(--space-xl);
    padding: var(--space-sm) var(--space-md);
    background: var(--clr-surface-alt);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.detail-code strong {
    color: var(--clr-text);
}

.detail-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
}

.detail-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.detail-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
}

.detail-desc {
    font-size: var(--fs-base);
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* ============================================
   WhatsApp Form
   ============================================ */

.whatsapp-form-container {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfce8 100%);
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-lg);
}

.whatsapp-form-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--ff-body);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: #166534;
    margin-bottom: var(--space-xl);
}

.whatsapp-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.whatsapp-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.whatsapp-form .form-group:last-of-type {
    margin-bottom: 0;
}

.whatsapp-form label {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: #15803d;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.whatsapp-form input,
.whatsapp-form textarea {
    padding: 12px 16px;
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    color: var(--clr-text);
    background: #fff;
    border: 1.5px solid #bbf7d0;
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition-fast);
    resize: vertical;
}

.whatsapp-form input:focus,
.whatsapp-form textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.whatsapp-form input::placeholder,
.whatsapp-form textarea::placeholder {
    color: #a7f3d0;
}

.btn-whatsapp-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 14px 28px;
    margin-top: var(--space-lg);
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: 600;
    color: #fff;
    background: var(--clr-primary);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.02em;
}

.btn-whatsapp-submit:hover {
    background: var(--clr-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Product Detail – Responsive
   ============================================ */

@media (max-width: 1024px) {
    .product-detail-grid {
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .detail-gallery {
        position: relative;
        top: 0;
    }

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

    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }

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

    .category-card {
        padding: var(--space-md);
    }

    .category-icon {
        width: 44px;
        height: 44px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 10px 12px;
    }

    .product-name {
        font-size: var(--fs-sm);
    }

    .product-desc {
        font-size: 11px;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }

    .product-footer {
        padding: 8px 12px 10px;
    }

    .product-price {
        font-size: var(--fs-sm);
    }

    .product-link,
    .product-cta {
        width: 30px;
        height: 30px;
    }

    .product-link svg,
    .product-cta svg {
        width: 16px;
        height: 16px;
    }

    /* Bottom nav visible on mobile */
    body {
        padding-bottom: 72px;
    }

    .mobile-bottom-nav {
        display: flex !important;
    }

    /* Adjust floating buttons on mobile */
    .floating-buttons {
        bottom: 84px;
    }

    .float-btn-whatsapp {
        display: none;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image {
        aspect-ratio: 1;
    }

    .pagination {
        gap: 4px;
    }

    .page-btn {
        min-width: 36px;
        height: 36px;
        font-size: var(--fs-xs);
    }

    body {
        padding-bottom: 72px;
    }
}

/* ============================================
   Placeholder image
   ============================================ */

.product-image img[src="images/placeholder.svg"] {
    object-fit: contain;
    padding: 20%;
    opacity: 0.3;
}

/* ============================================
   Mobile Bottom Navigation
   ============================================ */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px 0;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    text-decoration: none;
    color: var(--clr-text-light);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition-fast);
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item svg {
    transition: all var(--transition-fast);
}

.bottom-nav-item.active {
    color: var(--clr-accent);
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 0 0 3px 3px;
}

.bottom-nav-item:active {
    transform: scale(0.92);
}

/* WhatsApp center button */
.bottom-nav-whatsapp {
    color: #25D366;
}

.bottom-nav-whatsapp svg {
    width: 28px;
    height: 28px;
    padding: 6px;
    background: #25D366;
    color: #fff;
    fill: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-fast);
}

.bottom-nav-whatsapp:active svg {
    transform: scale(0.9);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.bottom-nav-whatsapp span {
    color: #25D366;
    font-weight: 600;
}