:root {
    --indigo: #3f4094;
    --indigo-dark: #343580;
    --magenta: #a6205d;
    --magenta-dark: #8e1a4f;
    --accent: #e94d65;
    --teal: #1b4962;
    --dark: #181818;
    --bg: #f5f5f5;
    --text: #181818;
    --muted: #666666;
    --white: #ffffff;
    --border: #e0e0e0;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
body.nav-open { overflow: hidden; }
a { color: var(--magenta); text-decoration: none; }
a:hover { color: var(--magenta-dark); }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* Top bar */
.topbar {
    background: var(--indigo);
    color: rgba(255,255,255,0.92);
    font-size: 0.72rem;
    padding: 0.35rem 0;
    line-height: 1.3;
    overflow: hidden;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    min-height: 28px;
}
.topbar-info {
    display: flex;
    gap: 0.85rem;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 0;
    flex: 1;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.topbar-item-office {
    min-width: 0;
    flex-shrink: 1;
}
.topbar-address {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 280px;
    display: inline-block;
    vertical-align: bottom;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
}
.topbar-address:hover { color: #fff; text-decoration: underline; }
.topbar-item strong { font-weight: 700; color: #fff; }
.topbar-icon {
    width: 14px !important;
    height: 14px !important;
    max-width: 14px;
    max-height: 14px;
    flex: 0 0 14px;
    display: block;
    object-fit: contain;
}
.topbar a { color: rgba(255,255,255,0.92); }
.topbar-social {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    flex-shrink: 0;
}
.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.topbar-social img {
    width: 14px !important;
    height: 14px !important;
    display: block;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.65rem 0;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.logo img {
    height: 56px;
    width: auto;
    display: block;
    max-width: 200px;
    object-fit: contain;
}
.header-actions { display: flex; gap: 0.45rem; align-items: center; flex-shrink: 0; }
.header-actions .btn {
    padding: 0.48rem 0.75rem;
    font-size: 0.8rem;
    gap: 0.4rem;
    line-height: 1.2;
}

/* Sticky header + menu */
.site-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.nav {
    background: var(--indigo);
    position: relative;
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    line-height: 1;
}
.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: nowrap;
}
.nav li { flex-shrink: 0; }
.nav a {
    color: white;
    display: block;
    padding: 0.72rem 0.82rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    transition: background 0.2s;
}
.nav a:hover, .nav a.active {
    background: var(--magenta);
    color: white;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1.1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.88rem;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-whatsapp { background: var(--magenta); color: white; border-radius: 0; font-weight: 700; }
.btn-whatsapp:hover { background: var(--magenta-dark); color: white; }
.btn-contact { background: var(--indigo); color: white; border-radius: 0; font-weight: 700; }
.btn-contact:hover { background: var(--indigo-dark); color: white; }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; display: block; object-fit: contain; }
.cart-remove-form { display: inline; margin: 0; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #d43d55; color: white; }
.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text); }
.cart-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cart-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cart-summary .btn-accent { color: white; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f0ece6 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--indigo); margin-top: 0; font-weight: 700; line-height: 1.2; }
.hero p { color: var(--muted); font-size: 1.05rem; }
.badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.card-body { padding: 1.25rem; }
.card-body h3 { color: var(--indigo); margin-top: 0; }
.product-image {
    height: 220px;
    background: linear-gradient(180deg, #f8f6f3, #eeeae4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-image .placeholder { color: var(--magenta); font-weight: 700; font-size: 0.9rem; text-align: center; padding: 1rem; }
a.product-image { display: block; text-decoration: none; }

.shop-filters {
    display: grid;
    grid-template-columns: 1fr 220px auto;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
    align-items: center;
}
.shop-filters input,
.shop-filters select {
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font: inherit;
}
.shop-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--magenta);
    margin-bottom: 0.35rem;
}
.shop-excerpt {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    min-height: 3.1em;
}
.shop-price-row { margin: 0.75rem 0; }
.shop-card-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}
.shop-card-actions form { margin: 0; }

.product-breadcrumb { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.product-gallery-main {
    background: #f8f6f3;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-gallery-main img { width: 100%; max-height: 420px; object-fit: contain; display: block; }
.product-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.product-thumb {
    border: 2px solid var(--border);
    background: white;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    width: 72px;
    height: 72px;
}
.product-thumb.active { border-color: var(--magenta); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-lead { font-size: 1.05rem; color: #444; line-height: 1.6; }
.product-meta { list-style: none; padding: 0; margin: 0 0 1.25rem; color: #444; }
.product-meta li { margin-bottom: 0.35rem; }
.product-add-form { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.product-add-form input[type="number"] { width: 90px; padding: 0.55rem; border: 1px solid var(--border); border-radius: 4px; }
.product-description-block {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.product-description-block h2 { color: var(--indigo); margin-top: 0; }
.product-description { line-height: 1.8; color: #333; white-space: pre-line; }

.page-hero { padding-top: 2rem; }
.page-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    line-height: 1.8;
    color: #333;
}
.page-intro-grid p { margin: 0 0 1rem; }
.page-lead {
    color: var(--muted);
    line-height: 1.7;
    max-width: 760px;
    margin: 1.25rem 0 0;
}
.page-service-grid { margin-top: 2rem; align-items: center; }
.page-service-copy { line-height: 1.8; color: #333; }
.page-service-copy p { margin: 0 0 1rem; }
.page-service-card { margin-top: 2rem; }
.page-service-card p { margin: 0 0 1rem; line-height: 1.8; color: #333; }
.page-service-card p:last-child { margin-bottom: 0; }
.page-contact-grid { align-items: start; }
.page-info-card .card-body,
.page-form-card .card-body,
.page-cart-card .card-body,
.page-empty-card .card-body { padding: 1.5rem; }
.page-form { margin-top: 1.5rem; }
.contact-details { list-style: none; margin: 1.5rem 0; padding: 0; }
.contact-details li { margin-bottom: 1rem; line-height: 1.6; color: #333; }
.contact-details strong { display: block; color: var(--indigo); margin-bottom: 0.2rem; }
.contact-details a { color: var(--magenta); font-weight: 600; }
.page-empty-card { text-align: center; max-width: 520px; margin: 0 auto; }
.page-empty-card p { margin: 0 0 1rem; color: #333; }
.cart-table-wrap { overflow-x: auto; margin-bottom: 0.5rem; }
.cart-qty-input { width: 90px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    align-items: stretch;
}
.team-card {
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.team-photo {
    height: 88px;
    padding: 0.5rem;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.team-photo img {
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}
.team-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.85rem 1rem 1rem;
}
.team-card h3 { margin: 0 0 0.25rem; color: var(--indigo); font-size: 1rem; text-align: left; }
.team-role {
    color: var(--magenta);
    font-weight: 600;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.35;
    text-align: left;
}
.price { font-size: 1.25rem; font-weight: 800; color: var(--magenta); }
.compare { text-decoration: line-through; color: var(--muted); margin-left: 0.5rem; font-size: 0.95rem; }
.section { padding: 3rem 0; }
.section h2 { color: var(--indigo); margin-top: 0; font-weight: 700; border-bottom: 3px solid var(--magenta); display: inline-block; padding-bottom: 0.5rem; }

/* Footer - eski site 2 renk */
.footer-top {
    background: var(--teal);
    color: rgba(255,255,255,0.85);
    padding: 3rem 0 2rem;
}
.footer-top h4 { color: var(--magenta); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-top a { color: rgba(255,255,255,0.85); }
.footer-top a:hover { color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.footer-bottom {
    background: var(--magenta);
    color: white;
    padding: 1rem 0;
    font-size: 0.85rem;
    text-align: center;
}

.alert { padding: 0.85rem 1rem; border-radius: 4px; margin: 1rem 0; }
.alert-success { background: #e8f5e9; color: #2e7d32; }
.alert-error { background: #ffebee; color: #c62828; }

table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--border); }
th { background: var(--indigo); color: white; }
th, td { padding: 0.85rem; border-bottom: 1px solid var(--border); text-align: left; }
input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font: inherit;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--magenta);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.35rem; font-weight: 600; }
.cart-count {
    background: var(--accent);
    color: white;
    border-radius: 999px;
    padding: 0.1rem 0.45rem;
    font-size: 0.65rem;
    margin-left: 0.2rem;
}
.service-icon {
    width: 48px; height: 48px;
    background: var(--magenta);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; margin-bottom: 1rem;
}

/* Hero slider */
.hero-slider {
    position: relative;
    background: #e8f4fc;
    overflow: hidden;
}
.slider-track { position: relative; height: clamp(320px, 42vw, 480px); }
.slide {
    display: none;
    position: absolute;
    inset: 0;
}
.slide.active { display: block; }
.slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    display: block;
}
.slide-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 38%;
    min-width: 280px;
    padding: 0;
    background: none;
    box-shadow: none;
}
.slide-caption--right {
    right: 4%;
    left: auto;
    text-align: left;
}
.slide-caption--left {
    left: 4%;
    right: auto;
    text-align: left;
}
.slide-caption--center {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
}
.slide-caption--center .slide-actions { justify-content: center; }
.slide-caption--center p { margin-left: auto; margin-right: auto; }
.slide-caption h1 {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    margin: 0 0 0.75rem;
    line-height: 1.2;
    font-weight: 700;
}
.slide-title-primary { color: var(--indigo); display: block; }
.slide-title-accent { color: var(--magenta); display: block; }
.slide-caption p {
    color: var(--indigo);
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 360px;
}
.slide-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.btn-outline-light {
    background: transparent;
    border: 2px solid var(--indigo);
    color: var(--indigo);
}
.btn-outline-light:hover { background: var(--indigo); color: white; }
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--magenta);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
}
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
}
.dot.active { background: var(--magenta); }

/* Brand carousel */
.section-sm { padding: 2rem 0; background: #eee; }
.brand-track-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}
.brand-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
    flex: 1;
}
.brand-item {
    flex: 0 0 160px;
    background: white;
    padding: 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.brand-item img { max-height: 50px; max-width: 130px; object-fit: contain; }
.brand-nav {
    background: white;
    border: 1px solid var(--border);
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--muted);
    flex-shrink: 0;
}

/* Sections */
.section-alt { background: white; }
.section-title {
    color: var(--indigo);
    font-size: 1.75rem;
    margin: 0;
    border-bottom: 3px solid var(--magenta);
    display: inline-block;
    padding-bottom: 0.5rem;
}
.section-title span { color: var(--magenta); }
.section-accent { color: var(--magenta); margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.service-card-body { text-align: center; }
.service-illustration { max-width: 100%; height: auto; margin-top: 1rem; }

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.standard-item { text-align: center; }
.standard-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    background: #fce4ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.standard-item h4 { color: var(--indigo); margin: 0; font-size: 0.95rem; }

.blog-card .blog-image { height: 200px; overflow: hidden; display: block; }
.blog-card .blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-image img { transform: scale(1.03); }
.blog-title { color: var(--magenta); font-size: 1rem; margin: 0 0 0.5rem; }
.blog-title a { color: inherit; text-decoration: none; }
.blog-title a:hover { color: var(--magenta-dark); }
.blog-date { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.35rem; }
.blog-read-more { margin-top: 0.75rem; padding: 0.45rem 0.9rem; font-size: 0.85rem; }
.section-lead { color: var(--muted); max-width: 720px; margin: 0.5rem auto 0; line-height: 1.7; }
.blog-back { display: inline-block; margin-bottom: 0.75rem; font-weight: 600; color: var(--indigo); }
.blog-detail-header { max-width: 820px; }
.blog-detail-header h1 { margin: 0.5rem 0; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; }
.blog-detail-wrap { max-width: 820px; }
.blog-detail-image { margin-bottom: 1.5rem; border-radius: 6px; overflow: hidden; }
.blog-detail-image img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.blog-detail-body { font-size: 1.02rem; line-height: 1.8; color: #333; }
.blog-detail-body p { margin: 0 0 1rem; }
.blog-detail-body strong { color: var(--indigo); }

/* Partners page */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.logo-grid-sm {
    grid-template-columns: repeat(4, 1fr);
    max-width: 520px;
}
.logo-grid-brands { grid-template-columns: repeat(3, 1fr); max-width: 720px; }
.logo-wrap {
    width: 90px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.logo-wrap-lg { width: 110px; height: 42px; }
.logo-wrap img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.logo-grid-item {
    background: white;
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    overflow: hidden;
    border-radius: 4px;
}
.logo-grid-item img {
    display: block;
    height: 36px !important;
    max-height: 36px !important;
    width: auto !important;
    max-width: 90px !important;
    object-fit: contain;
}
.logo-grid-sm .logo-grid-item { height: 80px; }
.logo-grid-sm .logo-grid-item img {
    height: 42px !important;
    max-height: 42px !important;
    max-width: 110px !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: white;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 1.25rem 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-text h3 { margin: 0 0 0.35rem; color: var(--text); font-size: 1rem; }
.cookie-text p { margin: 0; color: var(--muted); font-size: 0.88rem; max-width: 700px; }
.cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-btn {
    padding: 0.55rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--indigo);
    background: white;
    color: var(--indigo);
}
.cookie-btn:hover { background: #f0f0ff; }
.cookie-btn-accept {
    background: var(--indigo);
    color: white;
    border-color: var(--indigo);
}
.cookie-btn-accept:hover { background: var(--indigo-dark); }

/* Mobile */
@media (max-width: 1100px) {
    .topbar-address { max-width: 160px; }
}
@media (max-width: 768px) {
    .topbar-info { display: none; }
    .topbar .container { justify-content: center; }
    .topbar-social { gap: 1rem; }

    .header-row { flex-wrap: nowrap; }
    .logo img { height: 48px; }
    .header-actions .btn { padding: 0.5rem 0.7rem; font-size: 0.78rem; }

    .nav .container { padding: 0; }
    .nav-toggle { display: block; }

    .nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--indigo);
        flex-direction: column;
        z-index: 1000;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
    .nav ul.open { display: flex; }
    .nav li { width: 100%; }
    .nav a {
        padding: 0.85rem 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        white-space: normal;
    }

    .hero-grid, .grid-3, .grid-2, .footer-grid, .form-grid, .standards-grid, .logo-grid, .logo-grid-sm, .product-detail-grid, .page-intro-grid, .page-service-grid, .page-contact-grid { grid-template-columns: 1fr; }
    .team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
    .shop-filters { grid-template-columns: 1fr; }
    .slide-caption {
        position: absolute;
        right: auto;
        left: 0;
        bottom: 0;
        top: auto;
        transform: none;
        max-width: 100%;
        min-width: 0;
        width: 100%;
        padding: 1rem;
        background: linear-gradient(transparent, rgba(255,255,255,0.95));
    }
    .slide-caption p { max-width: 100%; }
    .slider-track { height: 280px; }
    .cookie-inner { flex-direction: column; align-items: stretch; }
    .cookie-actions { justify-content: stretch; }
    .cookie-btn { flex: 1; text-align: center; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nav a { padding: 0.85rem 0.75rem; font-size: 0.82rem; }
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
