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

:root {
    --bg: #f4f5f1;
    --surface: #ffffff;
    --surface-soft: #ecefe7;
    --ink: #20231f;
    --ink-2: #343a33;
    --muted: #697166;
    --line: #d9ddd3;
    --brand: #d8a300;
    --brand-2: #0f766e;
    --danger: #c24132;
    --success: #217a54;
    --shadow: 0 18px 45px rgba(32, 35, 31, 0.10);
    --shadow-sm: 0 8px 22px rgba(32, 35, 31, 0.08);
    --radius: 8px;
    --container-width: 1240px;
    --font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: var(--bg) !important;
    color: var(--ink);
    font-family: var(--font-family);
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.container,
.hero-container,
.nav-container {
    width: min(var(--container-width), calc(100% - 40px));
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--brand);
}

h1,
h2,
h3,
h4 {
    line-height: 1.08;
    color: var(--ink);
}

p {
    color: var(--muted);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(244, 245, 241, 0.92) !important;
    border-bottom: 1px solid rgba(32, 35, 31, 0.10);
    box-shadow: 0 10px 30px rgba(32, 35, 31, 0.08);
    backdrop-filter: blur(18px);
}

.header::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-2), var(--brand), var(--brand-2));
}

.navbar {
    min-height: 74px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 0;
    color: var(--ink);
    text-decoration: none;
}

.logo-image {
    width: 186px;
    max-width: none;
    height: auto;
    object-fit: contain;
}

.logo-subtitle {
    display: inline-flex;
    max-width: 96px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-text-fallback {
    color: var(--brand-2);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(32, 35, 31, 0.08);
    border-radius: 999px;
    list-style: none;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    color: var(--ink-2);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--ink) !important;
    color: #ffffff !important;
    border-color: var(--ink);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 210px;
    min-height: 40px;
    padding: 0 10px 0 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(32, 35, 31, 0.06);
}

.search-input {
    width: 100%;
    min-width: 0;
    background: transparent;
    border: 0;
    color: var(--ink);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    outline: none;
}

.search-input::placeholder {
    color: var(--muted);
}

.search-btn {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: var(--brand-2);
    cursor: pointer;
}

.teklif-sepeti-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(32, 35, 31, 0.06);
    cursor: pointer;
}

.teklif-sepeti-icon i {
    color: var(--brand-2);
    font-size: 1.1rem;
}

.sepet-counter {
    position: absolute;
    top: -7px;
    right: -7px;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    color: #ffffff;
    background: var(--danger);
    border: 2px solid #ffffff;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(32, 35, 31, 0.06);
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    border-radius: 2px;
}

/* Loading */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    transition: opacity 0.35s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 110px;
    margin-bottom: 24px;
}

.loader-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto;
    border: 3px solid var(--line);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Buttons */
.btn,
.btn-primary,
.btn-secondary,
.category-link,
.btn-details,
.add-to-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: var(--radius) !important;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary,
.btn-details {
    color: var(--ink) !important;
    background: var(--brand) !important;
    border: 1px solid var(--brand) !important;
    box-shadow: 0 10px 20px rgba(216, 163, 0, 0.22);
}

.btn-primary:hover,
.btn-details:hover {
    transform: translateY(-2px);
    background: #e2b42a !important;
}

.btn-secondary,
.add-to-offer-btn {
    color: var(--ink) !important;
    background: transparent !important;
    border: 1px solid var(--line) !important;
    box-shadow: none !important;
}

.btn-secondary:hover,
.add-to-offer-btn:hover {
    transform: translateY(-2px);
    border-color: var(--brand-2) !important;
    color: var(--brand-2) !important;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 52px;
    background:
        linear-gradient(90deg, rgba(244, 245, 241, 0.96) 0%, rgba(244, 245, 241, 0.90) 52%, rgba(236, 239, 231, 0.92) 100%),
        url("anasayfa_polenmutfak.png") center / cover no-repeat;
    border-bottom: 1px solid var(--line);
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: 54px;
}

.hero-text {
    max-width: 620px;
}

.hero-text h1 {
    margin: 14px 0 18px;
    color: var(--ink);
    font-size: clamp(2.35rem, 5vw, 5rem);
    font-weight: 900;
    letter-spacing: 0;
}

.hero-text p {
    max-width: 560px;
    margin-bottom: 28px;
    color: var(--ink-2);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image {
    position: relative;
    --hero-image-ratio: 1.6;
    --hero-image-bg: none;
    width: min(100%, 520px);
    justify-self: end;
    padding: 16px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 0;
    background-image: var(--hero-image-bg);
    background-position: center;
    background-size: cover;
    border-radius: calc(var(--radius) - 2px);
    filter: blur(18px);
    opacity: 0.18;
    transform: scale(1.08);
}

.hero-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-height: min(58vh, 430px);
    aspect-ratio: var(--hero-image-ratio);
    object-fit: contain;
    background: var(--surface-soft);
    border-radius: calc(var(--radius) - 2px);
}

.hero-image.is-portrait {
    width: min(100%, 420px);
}

.hero-image.is-square {
    width: min(100%, 470px);
}

.hero-image.is-wide {
    width: min(100%, 560px);
}

/* Sections */
.section-title {
    margin-bottom: 32px;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 900;
    letter-spacing: 0;
}

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 32px;
}

.section-heading-row .section-title {
    margin-bottom: 0;
}

.section-link {
    flex: 0 0 auto;
    color: var(--brand-2);
    font-weight: 900;
    text-decoration: none;
}

.section-link:hover {
    color: var(--brand);
}

.section-note,
.empty-state {
    color: var(--muted);
}

.stats-banner,
.products,
.categories-preview,
.features,
.contact-section,
.contact,
.main-content {
    padding: 64px 0;
}

.stats-banner {
    background: var(--ink);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
}

.stats-card {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background: #262a25;
}

.stats-number {
    color: #f2cf61;
    font-size: clamp(1.85rem, 3vw, 3rem);
    font-weight: 900;
}

.stats-label {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.94rem;
    font-weight: 700;
}

.products,
.features {
    background: var(--surface);
}

.products-grid,
.features-grid,
.category-grid,
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.category-grid {
    grid-auto-rows: 1fr;
}

.product-card,
.feature-card,
.category-card,
.contact-panel,
.contact-item,
.brands-section,
.catalog-embed {
    background: var(--surface) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover,
.feature-card:hover,
.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 118, 110, 0.38) !important;
    box-shadow: var(--shadow);
}

.product-image,
.product-card .product-image {
    position: relative;
    display: grid;
    place-items: center;
    height: auto;
    aspect-ratio: 4 / 3;
    padding: 0;
    background: var(--surface-soft) !important;
    border-bottom: 1px solid var(--line);
}

.product-card .product-image img {
    position: absolute;
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    object-fit: contain;
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    min-width: 58px;
    height: 38px;
    padding: 0 10px;
    color: #ffffff;
    background: var(--danger);
    border-radius: var(--radius);
    font-weight: 900;
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.product-name,
.product-title {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 900;
}

.product-code {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.product-price {
    margin: 14px 0;
    color: var(--brand-2);
    font-size: 1.18rem;
    font-weight: 900;
}

.product-actions,
.product-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-actions .btn,
.product-footer .btn-add-quote,
.product-footer .btn-details {
    flex: 1;
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(32, 35, 31, 0.48);
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.campaigns-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 270px));
    justify-content: center;
    gap: 16px;
}

.campaign-card {
    min-height: 0;
}

.campaign-card .product-image {
    aspect-ratio: 16 / 10;
}

.campaign-card .product-image img {
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
}

.campaign-card .discount-badge {
    top: 10px;
    right: 10px;
    min-width: 48px;
    height: 32px;
    font-size: 0.9rem;
}

.campaign-card .product-info {
    padding: 14px;
}

.campaign-card .product-name {
    display: -webkit-box;
    min-height: 2.6em;
    margin-bottom: 6px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.98rem;
    line-height: 1.3;
}

.campaign-card .product-price {
    margin: 10px 0;
    font-size: 1.05rem;
}

.campaign-card .product-actions {
    gap: 8px;
}

.campaign-card .btn {
    min-height: 40px;
    padding-inline: 10px;
}

.new-products-section {
    padding-top: 56px;
    background: var(--surface-soft);
}

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

.new-product-card .product-image {
    aspect-ratio: 4 / 3;
}

.feature-card,
.category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 265px;
    overflow: hidden;
    padding: 24px;
    text-decoration: none;
}

.feature-icon,
.category-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: var(--brand-2);
    background: rgba(15, 118, 110, 0.10);
    border-radius: var(--radius);
    font-size: 1.25rem;
}

.feature-card h3,
.category-card h3 {
    min-height: 2.55em;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 900;
}

.category-card p,
.feature-card p {
    margin-bottom: 18px;
}

.category-link {
    width: max-content;
    margin-top: auto;
    color: var(--brand-2);
    border: 1px solid var(--line);
}

.empty-state {
    grid-column: 1 / -1;
    padding: 42px 24px;
    text-align: center;
    background: var(--surface);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}

.empty-state i {
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 2rem;
}

/* Product detail */
.product-detail-section {
    padding: 36px 0 64px;
    background: var(--bg);
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.detail-breadcrumb a {
    color: var(--brand-2);
    text-decoration: none;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 26px;
    align-items: stretch;
}

.product-gallery,
.detail-info {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.product-gallery {
    display: grid;
    place-items: center;
    min-height: 460px;
    padding: 28px;
    background: linear-gradient(180deg, #ffffff, var(--surface-soft));
}

.detail-image {
    width: 100%;
    height: min(440px, 54vw);
    object-fit: contain;
}

.detail-info {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.detail-title {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    letter-spacing: 0;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.detail-badge,
.detail-discount {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 900;
}

.detail-badge {
    color: var(--ink-2);
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.detail-campaign {
    margin-bottom: 18px;
    padding: 16px;
    background: rgba(216, 163, 0, 0.12);
    border: 1px solid rgba(216, 163, 0, 0.28);
    border-radius: var(--radius);
}

.detail-discount {
    width: max-content;
    color: #ffffff;
    background: var(--danger);
}

.detail-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin: 12px 0 18px;
    color: var(--brand-2);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
}

.detail-price small {
    color: var(--muted);
    font-size: 1rem;
    text-decoration: line-through;
}

.detail-campaign-date,
.detail-description {
    color: var(--muted);
    font-weight: 700;
}

.detail-description {
    margin-bottom: 20px;
    font-size: 1rem;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin: 4px 0 22px;
}

.detail-spec {
    min-height: 78px;
    padding: 14px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.detail-spec span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.detail-spec strong {
    color: var(--ink);
    font-size: 1rem;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.detail-actions .btn,
.detail-actions .sepete-ekle-btn,
.detail-actions .teklif-iste-btn {
    flex: 1 1 180px;
}

.sepete-ekle-btn,
.teklif-iste-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sepete-ekle-btn {
    color: #ffffff;
    background: var(--brand-2);
}

.teklif-iste-btn {
    color: var(--ink);
    background: var(--brand);
}

.sepete-ekle-btn:hover,
.teklif-iste-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.sepete-ekle-btn.sepette,
.teklif-iste-btn.sepette {
    color: #ffffff;
    background: var(--success);
}

.similar-products-section {
    padding: 58px 0 68px;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.contact-section {
    background: var(--surface-soft);
}

.contact-grid,
.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 18px;
}

.contact-panel {
    padding: 28px;
}

.contact-form-container,
.contact-info-container {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 22px;
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 900;
}

#contact-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 7px;
    transition: transform 0.2s ease;
}

.form-group label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-2);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    color: var(--ink);
    background: var(--brand);
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.contact-info {
    display: grid;
    gap: 12px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.contact-info li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-info li > i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--brand-2);
    background: rgba(15, 118, 110, 0.10);
    border-radius: var(--radius);
}

.contact-info strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-weight: 900;
}

.contact-info span {
    color: var(--muted);
}

.map-container {
    overflow: hidden;
    min-height: 300px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    filter: saturate(0.8) contrast(0.95);
}

.contact-highlight {
    background: var(--ink) !important;
    color: #ffffff;
}

.contact-highlight h2,
.contact-highlight h3 {
    color: #ffffff;
}

.contact-highlight p,
.contact-highlight .contact-list {
    color: rgba(255, 255, 255, 0.76);
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.contact-list div,
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-contact-form,
.contact-form {
    display: grid;
    gap: 12px;
}

.quick-contact-form input,
.quick-contact-form textarea,
.contact-form input,
.contact-form textarea,
.filter-select,
.filter-group select,
.filter-group input {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    outline: none;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.filter-select:focus,
.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--brand-2);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

/* Generic page headers */
.page-header {
    padding: 58px 0 !important;
    background: var(--surface-soft) !important;
    border-bottom: 1px solid var(--line);
}

.page-header::before {
    display: none !important;
}

.page-title {
    max-width: 900px;
    margin: 0 auto 14px !important;
    color: var(--ink) !important;
    font-size: clamp(2rem, 4vw, 4rem) !important;
    letter-spacing: 0 !important;
}

.page-title .highlight {
    color: var(--brand-2) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
}

.page-description {
    max-width: 680px;
    margin: 0 auto !important;
    color: var(--muted) !important;
}

.main-content {
    background: var(--bg) !important;
}

/* Services page */
.services-page {
    padding-top: 52px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 100%;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: var(--ink);
    background: var(--brand);
    border-radius: var(--radius);
    font-size: 1.25rem;
}

.service-card h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 24px;
    padding: 30px;
    color: #ffffff;
    background: var(--ink);
    border-radius: var(--radius);
}

.services-cta h2 {
    margin: 8px 0 10px;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 0;
}

.services-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.services-cta .btn {
    flex: 0 0 auto;
}

/* Brands and catalog page overrides */
.brands-section {
    padding: 28px !important;
}

.brands-section h2 {
    color: var(--ink) !important;
    border-bottom-color: var(--brand) !important;
}

.brands-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 18px !important;
}

.brand-item {
    min-height: 170px !important;
    padding: 22px !important;
    background: var(--surface) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
}

.brand-name {
    color: var(--ink) !important;
}

.catalog-embed {
    min-height: 420px;
    color: var(--muted) !important;
    background: var(--surface) !important;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    margin-top: 18px;
    padding: 0 18px;
    color: var(--ink) !important;
    background: var(--brand) !important;
    border-radius: var(--radius) !important;
    font-weight: 900;
    text-decoration: none;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 0 0 14px;
    color: var(--ink-2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 245, 241, 0.98)),
        var(--bg);
    border-top: 1px solid rgba(32, 35, 31, 0.10);
}

.footer::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-2), var(--brand), var(--brand-2));
}

.footer-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0 14px;
    border-bottom: 1px solid var(--line);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    text-decoration: none;
}

.footer-brand img {
    width: 190px;
    max-width: none;
    height: auto;
}

.footer-brand span {
    max-width: 180px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 16px;
    color: #ffffff;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(150px, 1fr));
    gap: 22px;
    padding: 20px 0;
    min-width: 0;
}

.footer-section {
    min-width: 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
}

.footer-section p,
.footer-section a,
.footer-contact p {
    color: var(--muted);
}

.footer-section p {
    max-width: 330px;
}

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

.footer-section li {
    margin-bottom: 6px;
}

.footer-section a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 800;
}

.footer-section a:hover {
    color: var(--brand-2);
}

.footer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.footer-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 12px;
    color: var(--ink-2);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(32, 35, 31, 0.05);
    font-size: 0.88rem;
    font-weight: 800;
}

.footer-stats strong {
    color: var(--brand-2);
    font-weight: 900;
}

.footer-contact {
    display: grid;
    gap: 7px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    overflow-wrap: anywhere;
}

.footer-contact i {
    width: 18px;
    margin-top: 3px;
    color: var(--brand-2);
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--brand-2);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(32, 35, 31, 0.05);
}

.social-links a:hover {
    color: #ffffff;
    background: var(--brand-2);
    border-color: var(--brand-2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    color: var(--muted);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-bottom-links a {
    color: var(--ink-2);
    font-weight: 900;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--brand-2);
}

/* Floating WhatsApp */
.whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px 0 14px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.whatsapp-icon,
.whatsapp-button i {
    color: #1daa61;
    font-size: 1.18rem;
}

.whatsapp-number {
    color: var(--ink);
    font-weight: 900;
}

/* Basket modal */
.sepet-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(32, 35, 31, 0.55);
    backdrop-filter: blur(5px);
}

.sepet-modal.show {
    display: flex;
}

.sepet-modal-content {
    width: min(760px, 100%);
    max-height: 88vh;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sepet-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background:
        linear-gradient(90deg, rgba(15, 118, 110, 0.10), rgba(216, 163, 0, 0.10)),
        var(--surface-soft);
    border-bottom: 1px solid var(--line);
}

.sepet-modal-header h4 {
    margin: 0;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 900;
}

.sepet-modal-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
}

.sepet-modal-body {
    max-height: calc(88vh - 76px);
    overflow-y: auto;
    padding: 18px;
}

.empty-cart {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 220px;
    text-align: center;
}

.empty-cart i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--brand-2);
    background: rgba(15, 118, 110, 0.10);
    border-radius: 999px;
    font-size: 1.5rem;
}

.empty-cart h4,
.teklif-formu h4,
.sepet-header h4 {
    color: var(--ink);
    font-weight: 900;
}

.sepet-header,
.sepet-footer,
.btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sepet-header {
    margin-bottom: 14px;
}

.sepet-items {
    display: grid;
    gap: 10px;
}

.sepet-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.sepet-item-image {
    width: 72px;
    height: 58px;
    padding: 6px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.sepet-item-info {
    min-width: 0;
}

.sepet-item-info h6 {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 900;
}

.sepet-item-info small {
    color: var(--muted);
    font-weight: 800;
}

.sepet-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.sepet-footer .btn {
    width: 100%;
}

.teklif-formu {
    display: grid;
    gap: 14px;
}

.required-note {
    padding: 10px 12px;
    color: var(--brand-2);
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 900;
}

#teklif-formu {
    display: grid;
    gap: 12px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-label,
.kvkk-label {
    color: var(--ink);
    font-weight: 900;
}

.form-control {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    outline: none;
}

textarea.form-control {
    min-height: 96px;
    resize: vertical;
}

.form-control:focus {
    border-color: rgba(15, 118, 110, 0.46);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.10);
}

.kvkk-section,
.kvkk-checkbox {
    padding: 12px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.kvkk-checkbox input {
    margin-top: 4px;
    accent-color: var(--brand-2);
}

.kvkk-text {
    max-height: 150px;
    overflow-y: auto;
    margin-top: 10px;
    padding: 10px;
    color: var(--muted);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.85rem;
}

.kvkk-text p,
.kvkk-text li {
    color: var(--muted);
}

.kvkk-text ul {
    padding-left: 18px;
}

.kvkk-consent {
    margin-top: 8px;
    color: var(--success);
    font-weight: 900;
}

/* Notifications */
.notification {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10001;
    max-width: min(420px, calc(100vw - 32px));
    padding: 14px 16px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 1280px) {
    .nav-right .search-box {
        display: none;
    }
}

@media (max-width: 1160px) {
    .nav-container {
        gap: 12px;
    }

    .logo-image {
        width: 162px;
    }

    .logo-subtitle {
        display: none;
    }

    .nav-menu a {
        padding: 0 9px;
        font-size: 0.84rem;
    }
}

@media (max-width: 1060px) {
    .nav-menu {
        gap: 2px;
    }

    .nav-menu a {
        padding: 0 9px;
        font-size: 0.88rem;
    }

    .hero-content,
    .product-detail,
    .contact-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .container,
    .hero-container,
    .nav-container {
        width: min(100% - 28px, var(--container-width));
    }

    .navbar {
        min-height: 68px;
    }

    .logo-image {
        width: 162px;
        height: auto;
    }

    .logo-subtitle {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-menu.active,
    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        justify-content: center;
        width: 100%;
        color: var(--ink-2);
    }

    .hero {
        padding: 46px 0;
    }

    .hero-content {
        gap: 28px;
    }

    .hero-image {
        order: -1;
    }

    .product-gallery {
        min-height: 340px;
    }

    .detail-info {
        padding: 22px;
    }

    .stats-grid,
    .services-grid,
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .services-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-topline {
        align-items: flex-start;
    }

    .footer-brand img {
        width: 162px;
    }

    .footer-brand span {
        display: none;
    }

    .product-actions,
    .product-footer {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .logo-image {
        width: 146px;
        height: auto;
    }

    .stats-grid,
    .detail-specs,
    .services-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .product-detail-section {
        padding-top: 24px;
    }

    .product-gallery {
        min-height: 280px;
        padding: 18px;
    }

    .detail-image {
        height: 280px;
    }

    .detail-actions .btn,
    .detail-actions .sepete-ekle-btn {
        flex-basis: 100%;
    }

    .footer-topline,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-number {
        display: none;
    }
}
