/* OneProduct – tek ürün vitrin teması (Wepro) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --op-main: #0f172a;
    --op-accent: #c9a227;
    --op-header: #0f172a;
    --op-footer: #0f172a;
    --op-bg: #fafaf9;
    --op-topbar: transparent;
    --op-text: #1e293b;
    --op-muted: #64748b;
    --op-border: #e2e8f0;
}

body {
    font-family: 'Montserrat', -apple-system, sans-serif;
    font-weight: 400;
    color: var(--op-text);
    background: var(--op-bg);
    line-height: 1.6;
}

/* Hero ve içerik header+topbar altından başlar */
.op-body {
    padding-top: 120px;
}

@media (max-width: 768px) {
    .op-body {
        padding-top: 70px;
    }
    .op-products {
        padding: 2rem 1rem;
    }
    .op-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}

/* Topbar + Header – solid renk, hero bunların altından başlar */
.op-topbar {
    background: var(--op-topbar);
    color: #fff;
    padding: 0.5rem 2rem;
    font-size: 0.85rem;
}

.op-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.op-topbar a {
    color: inherit;
    text-decoration: none;
    opacity: 0.95;
}

.op-topbar a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .op-topbar {
        display: none;
    }
    .op-nav-toggle {
        display: flex;
    }
    .op-nav,
    .op-nav--pres {
        display: none;
    }
}

/* Header – settings_headerColor ile senkron */
.op-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--op-header);
}

/* OneProduct preview: krem yapışkan şerit + merkez menü (Luxora koyu header yerine) */
.op-header-wrap--pres {
    background: rgba(250, 247, 242, 0.92) !important;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid rgba(196, 160, 98, 0.18);
    box-shadow: 0 1px 0 rgba(255, 252, 247, 0.6) inset, 0 8px 32px rgba(22, 19, 17, 0.04);
}

.op-header-inner--pres {
    width: min(1120px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.op-header-pres-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: start;
    min-width: 0;
}

.op-logo--text {
    text-decoration: none;
    white-space: nowrap;
}

.op-logo--img {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.op-logo-img {
    display: block;
    height: auto;
    max-height: 36px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
}

.op-nav--pres {
    justify-self: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.1rem;
    max-width: 100%;
}

.op-nav--pres a {
    color: var(--ink, #1a1714) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.op-nav--pres a:hover,
.op-nav--pres a:focus-visible {
    border-bottom-color: var(--accent-gold-deep, #8e6b3a);
    /*
    box-shadow: 0 10px 28px rgba(196, 160, 98, 0.22), 0 0 24px rgba(28, 58, 69, 0.08);
    transform: translateY(-2px) scale(1.02);
    */
    opacity: 1;
}

.op-header-actions--pres {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0;
}

.op-header-wrap--pres .op-nav-toggle {
    color: #1a1714;
}

.op-header-wrap--pres .op-nav-toggle:hover {
    background: rgba(196, 160, 98, 0.12);
}

.op-cart-btn--pres {
    color: #1a1714 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: box-shadow 0.35s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.op-cart-btn--pres:hover,
.op-cart-btn--pres:focus-visible {
    box-shadow: 0 0 20px rgba(196, 160, 98, 0.38), 0 8px 32px rgba(28, 58, 69, 0.12);
    background: rgba(255, 252, 247, 0.92);
    color: #1c3a45 !important;
    transform: translateY(-2px) scale(1.04);
}

.op-cart-btn--pres svg {
    display: block;
}

.op-header-wrap--pres .op-cart-count {
    background: #c9a868;
    color: #161311 !important;
    top: -3px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 18px;
    padding: 0 4px;
    box-sizing: border-box;
}

.op-sidemenu-extra {
    font-weight: 600;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.op-footer--presentation {
    margin-top: 0;
}

.op-footer-logo-text {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

/* Footer – alt şerit (presentation ile uyumlu) */
.op-footer-meta {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.65) 0%, rgba(229, 223, 213, 0.95) 100%);
    border-top: 1px solid rgba(196, 160, 98, 0.2);
    padding: 1.75rem 0 2.25rem;
    margin-top: 0.5rem;
}

.op-footer-meta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.op-footer-meta-copy {
    max-width: 40rem;
}

.op-footer-copyright {
    margin: 0;
    font-size: 0.82rem;
    color: #5c534a;
    letter-spacing: 0.02em;
}

.op-footer-meta-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 2rem;
    width: 100%;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(196, 160, 98, 0.15);
}

.op-footer-etbis-wrap .op-etbis-logo {
    height: 36px;
    width: auto;
    opacity: 0.92;
}

.op-footer-payment .op-payment-logos--footer {
    max-height: 30px;
    width: auto;
    opacity: 0.95;
}

.op-footer-legal-label {
    margin: 1.25rem 0 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(92, 83, 74, 0.75);
}

.op-footer-explore-main {
    list-style: none;
    margin: 0;
    padding: 0;
}

.op-footer-explore-main li {
    margin-bottom: 0.45rem;
}

.op-footer-explore-legal {
    list-style: none;
    margin: 0 0 0.35rem;
    padding: 0;
}

.op-footer-explore-legal--cms {
    margin-top: 0.35rem;
}

.op-footer-explore-legal li {
    margin-bottom: 0.35rem;
}

.op-footer-explore-legal a {
    font-size: 0.88rem;
    color: rgba(26, 23, 20, 0.82);
    text-decoration: none;
}

.op-footer-explore-legal a:hover {
    text-decoration: underline;
    color: #8e6b3a;
}

.op-footer--presentation .footer-col a {
    color: rgba(26, 23, 20, 0.88);
}

.op-footer--presentation .footer-col h3 {
    color: #1a1714;
}

.op-footer-join-btn {
    width: 100%;
    margin-top: 0.35rem;
}

@media (max-width: 900px) {
    .op-nav--pres {
        display: none;
    }

    .op-nav-toggle {
        display: flex;
    }
}

/* Açık header: beyaz/açık arka plan – koyu logo görünür */
.op-header-wrap.op-header--light {
    background: #fff !important;
    border-bottom: 1px solid var(--op-border);
}

.op-header {
    padding: 1rem 2rem;
}

.op-header.op-header--pres {
    padding: 0.85rem 1.25rem 1rem;
}

.op-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.op-logo img {
    height: 36px;
    width: auto;
}

/* Hamburger – sadece mobilde görünür */
.op-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.op-header--light .op-nav-toggle {
    color: var(--op-text);
}

.op-nav-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.op-header--light .op-nav-toggle:hover {
    background: rgba(0,0,0,0.06);
}

.op-nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.op-nav-toggle[aria-expanded="true"] .op-nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.op-nav-toggle[aria-expanded="true"] .op-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.op-nav-toggle[aria-expanded="true"] .op-nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Sidemenu overlay */
.op-sidemenu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.3s;
}

.op-sidemenu[aria-hidden="false"] {
    pointer-events: auto;
    visibility: visible;
}

.op-sidemenu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.op-sidemenu[aria-hidden="false"] .op-sidemenu-backdrop {
    opacity: 1;
}

.op-sidemenu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.op-sidemenu[aria-hidden="false"] .op-sidemenu-panel {
    transform: translateX(0);
}

.op-sidemenu-nav {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0;
}

.op-sidemenu-nav a {
    padding: 0.875rem 1rem;
    color: var(--op-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.op-sidemenu-nav a:hover {
    background: rgba(201, 162, 39, 0.08);
    color: var(--op-accent);
}

.op-nav {
    display: flex;
    gap: 2rem;
}

.op-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.op-header--light .op-nav a {
    color: var(--op-text);
}

.op-nav a:hover {
    color: var(--op-accent);
}

.op-header--light .op-nav a:hover {
    color: var(--op-main);
}

.op-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.op-cart-btn {
    position: relative;
    color: #fff;
    padding: 0.5rem;
}

.op-header--light .op-cart-btn {
    color: var(--op-text);
}

.op-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--op-accent);
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.op-header--light .op-cart-count {
    color: #fff !important;
}

/* Hero – slider, overlay yok, direkt resim */
.op-hero-slider {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.op-hero-slides {
    position: absolute;
    inset: 0;
}

.op-hero-slide {
    position: absolute;
    inset: 0;
    display: none;
}

.op-hero-slide.active {
    display: block;
}

.op-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.op-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.op-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.op-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Trust bar – monochrome SVG icons, primary color */
.op-trust-bar {
    background: #fff;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid var(--op-border);
}

.op-trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .op-trust-bar {
        padding: 1.25rem 1rem;
    }
    .op-trust-inner {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    .op-trust-item {
        min-width: 200px;
    }
}

@media (max-width: 600px) {
    .op-trust-item {
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
}

.op-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s;
}

.op-trust-item:hover {
    transform: translateY(-2px);
}

.op-trust-icon-svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--op-main);
    background: rgba(15, 23, 42, 0.06);
    border-radius: 10px;
    padding: 8px;
}

.op-trust-icon-svg svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.op-trust-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--op-text);
    letter-spacing: 0.02em;
}

/* Resimli section – 3 banner: 100% width, height auto */
.op-banner {
    overflow: hidden;
}

.op-banner-inner {
    width: 100%;
    padding: 0;
}

.op-banner-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.op-banner-1,
.op-banner-2,
.op-banner-3 {
    padding: 0;
}

/* Blog section – ana sayfa */
.op-blog-section {
    padding: 4rem 2rem;
    background: #fff;
}

.op-blog-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.op-blog-section .op-section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.op-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .op-blog-grid {
        grid-template-columns: 1fr;
    }
}

.op-blog-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid var(--op-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

@media (max-width: 600px) {
    .op-blog-card {
        grid-template-columns: 1fr;
    }
}

.op-blog-card-img {
    height: 180px;
    flex-shrink: 0;
}

.op-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-blog-card-content {
    padding: 1.25rem 1.5rem 1.25rem 0;
    display: flex;
    flex-direction: column;
}

.op-blog-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.op-blog-card-content h3 a {
    color: var(--op-main);
    text-decoration: none;
}

.op-blog-card-content h3 a:hover {
    color: var(--op-accent);
}

.op-blog-date {
    font-size: 0.8rem;
    color: var(--op-muted);
    margin-bottom: 0.5rem;
}

.op-blog-excerpt {
    font-size: 0.9rem;
    color: var(--op-text);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 0.75rem;
}

.op-blog-readmore {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--op-accent);
    text-decoration: none;
}

.op-blog-readmore:hover {
    text-decoration: underline;
}

.op-blog-section .op-blog-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.op-blog-all {
    display: inline-block;
    margin-top: 2rem;
}

.op-no-posts {
    text-align: center;
    color: var(--op-muted);
    padding: 3rem;
}

/* Blog list & post detail sayfaları */
.op-posts-page .op-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.op-post-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--op-border);
    border-radius: 12px;
    overflow: hidden;
}

.op-post-card-img {
    height: 220px;
}

.op-post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-post-card-content {
    padding: 1.5rem;
}

.op-post-card-content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.op-post-card-content h2 a {
    color: var(--op-main);
    text-decoration: none;
}

.op-post-featured {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.op-post-featured img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.op-post-header {
    margin-bottom: 2rem;
}

.op-post-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.op-post-content {
    line-height: 1.8;
}

.op-similar-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--op-border);
}

.op-similar-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.op-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .op-similar-grid {
        grid-template-columns: 1fr;
    }
}

.op-similar-card {
    display: block;
    color: inherit;
    text-decoration: none;
    border: 1px solid var(--op-border);
    border-radius: 10px;
    overflow: hidden;
}

.op-similar-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.op-similar-card h4 {
    padding: 1rem;
    font-size: 1rem;
}

.op-similar-date {
    display: block;
    padding: 0 1rem 1rem;
    font-size: 0.8rem;
    color: var(--op-muted);
}

/* Products Section */
.op-products {
    padding: 4rem 2rem;
}

.op-products-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.op-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--op-main);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.op-products-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .op-products-layout {
        grid-template-columns: 1fr;
    }
}

/* Kategori sidebar – mobilde collapsible */
.op-sidebar-toggle {
    display: none;
}

@media (max-width: 768px) {
    .op-sidebar {
        position: static;
        padding: 0;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    .op-sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem 1.25rem;
        border: 1px solid var(--op-border);
        border-radius: 10px;
        background: #fff;
        font-family: inherit;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--op-text);
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: background 0.2s, border-color 0.2s;
    }
    .op-sidebar-toggle:hover {
        background: var(--op-bg);
        border-color: var(--op-accent);
    }
    .op-sidebar-toggle-icon {
        display: flex;
        align-items: center;
        margin-right: 0.5rem;
        color: var(--op-accent);
    }
    .op-sidebar-toggle-text {
        flex: 1;
        text-align: left;
    }
    .op-sidebar-toggle-arrow {
        font-size: 0.7rem;
        transition: transform 0.25s;
        color: var(--op-muted);
    }
    .op-sidebar-toggle[aria-expanded="true"] .op-sidebar-toggle-arrow {
        transform: rotate(180deg);
    }
    .op-category-nav {
        display: none;
        margin-top: 0.75rem;
        padding: 1rem 0;
        border-top: 1px solid var(--op-border);
    }
    .op-sidebar-toggle[aria-expanded="true"] ~ .op-category-nav {
        display: block;
        background: #fff;
        padding: 1rem 1.25rem;
        border-radius: 10px;
        border: 1px solid var(--op-border);
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
}

.op-sidebar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
    height: fit-content;
    position: sticky;
    top: 150px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.op-sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--op-border);
}

.op-sidebar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--op-accent);
    opacity: 0.9;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.op-sidebar h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--op-muted);
    margin: 0;
}

.op-category-nav {
    margin-top: 0;
}

.op-category-tree {
    list-style: none;
    margin: 0;
    padding: 0;
}

.op-category-tree > li {
    margin-bottom: 0.15rem;
}

.op-category-tree .op-cat-children {
    list-style: none;
    margin: 0.25rem 0 0.5rem 0;
    padding-left: 1.25rem;
    border-left: 1px solid var(--op-border);
}

.op-category-tree .op-cat-children li {
    margin-bottom: 0.1rem;
}

.op-category-tree a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--op-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.op-category-tree .op-cat-children a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--op-muted);
}

.op-category-tree a:hover {
    color: var(--op-main);
    background: rgba(201, 162, 39, 0.06);
}

.op-category-tree a.active {
    color: var(--op-accent);
    background: rgba(201, 162, 39, 0.08);
    font-weight: 600;
}

.op-category-tree .op-cat-all a {
    font-weight: 600;
    color: var(--op-main);
}

.op-category-tree .op-cat-all a.active {
    color: var(--op-accent);
}

.op-category-tree .op-cat-children a.active {
    color: var(--op-accent);
    font-weight: 600;
}

/* Görsel ayırıcı: Tüm Kategoriler */
.op-category-tree > .op-cat-all {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--op-border);
}

.op-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    min-height: 280px;
}

@media (max-width: 600px) {
    .op-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        min-height: 200px;
    }
    .op-product-info h3 {
        font-size: 0.85rem;
    }
    .op-product-price,
    .op-product-old-price {
        font-size: 0.8rem !important;
    }
    .op-product-info {
        padding: 0.6rem 0.5rem;
    }
    .op-product-actions {
        padding: 0 0.5rem 0.75rem;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    .op-card-qty {
        width: 44px;
        min-height: 38px;
        font-size: 0.85rem;
    }
    .op-product-add {
        min-height: 38px;
        font-size: 0.8rem;
        padding: 0 0.6rem;
    }
}

/* Boş sonuç – ürün yok / filtre eşleşmesi yok */
.op-no-results {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--op-bg) 0%, #fff 100%);
    border-radius: 12px;
    border: 1px dashed var(--op-border);
}

.op-filter-no-results {
    display: none;
}

.op-filter-no-results.is-visible {
    display: flex;
}

.op-no-results-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--op-muted);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.op-no-results-icon svg {
    width: 64px;
    height: 64px;
}

.op-no-results-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--op-text);
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.op-no-results-desc {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--op-muted);
    margin: 0;
    line-height: 1.5;
}

.op-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.op-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.op-product-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.op-product-img {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.op-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #dc2626;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.op-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.op-product-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    line-height: 1.3;
    width: 100%;
}

.op-product-variants {
    margin-bottom: 0.5rem;
}

.op-product-variants .op-card-variant-select {
    width: 100%;
    min-height: 32px;
    padding: 0.25rem 1.5rem 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 500;
    border: 1px solid var(--op-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    color: var(--op-text);
}

.op-product-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.op-product-old-price {
    font-size: 0.85rem;
    color: var(--op-muted);
    text-decoration: line-through;
}

.op-product-price {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--op-accent);
}

.op-product-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
    align-items: stretch;
    margin-top: auto;
}

.op-product-qty {
    flex-shrink: 0;
}

.op-card-qty {
    width: 56px;
    min-height: 44px;
    padding: 0 0.5rem;
    border: 1px solid var(--op-border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    text-align: center;
}

.op-product-add {
    flex: 1;
    min-height: 44px;
    padding: 0 1rem;
    border: none;
    background: var(--op-main) !important;
    color: #ffffff !important;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.op-product-add:hover {
    background: rgba(15, 23, 42, 0.85) !important;
}

.op-product-add:active {
    background: rgba(15, 23, 42, 0.75) !important;
}

/* Cart Section */
.op-cart-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--op-bg) 0%, #fff 100%);
}

.op-cart-section .op-cart-title {
    text-align: center;
}

.op-cart-inner {
    max-width: 640px;
    margin: 0 auto;
}

.op-cart-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--op-border);
}

.op-cart-empty-wrap {
    text-align: center;
    padding: 3rem 2rem;
}

.op-cart-empty {
    color: var(--op-muted);
    font-size: 1rem;
}

.op-cart-list {
    margin-bottom: 1.5rem;
}

.op-cart-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--op-bg);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.op-cart-item:last-of-type {
    margin-bottom: 0;
}

.op-cart-item-img {
    flex-shrink: 0;
}

.op-cart-item-img img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.op-cart-item-info {
    flex: 1;
    min-width: 0;
}

.op-cart-item-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.op-cart-item-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--op-muted);
}

.op-cart-item-total {
    font-weight: 600;
    color: var(--op-accent);
    font-size: 1rem;
}

.op-cart-remove {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626 !important;
    text-decoration: none !important;
    font-size: 1.25rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.op-cart-remove:hover {
    background: rgba(220, 38, 38, 0.1);
}

.op-cart-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--op-border);
}

.op-cart-summary {
    margin-bottom: 1.5rem;
}

.op-cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.op-cart-summary-row:not(.op-cart-summary-total) {
    color: var(--op-muted);
}

.op-cart-summary-row.op-cart-summary-total {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--op-border);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--op-text);
}

.op-cart-summary-total .op-cart-summary-label {
    font-weight: 700;
}

.op-cart-summary-value {
    font-weight: 600;
}

.op-cart-total-amount {
    color: var(--op-accent) !important;
    font-size: 1.3rem;
}

.op-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.op-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.op-btn,
.op-btn * {
    color: inherit;
}

.op-btn-primary {
    background: var(--op-accent) !important;
    color: #0f172a !important;
}

.op-btn-primary:hover {
    background: rgba(201, 162, 39, 0.88) !important;
    color: #0f172a !important;
}

.op-btn-primary:active {
    background: rgba(201, 162, 39, 0.78) !important;
}

.op-btn-outline {
    background: transparent !important;
    border: 2px solid var(--op-main);
    color: var(--op-main) !important;
}

.op-btn-outline:hover {
    background: rgba(15, 23, 42, 0.08) !important;
    color: var(--op-main) !important;
}

.op-btn-outline:active {
    background: rgba(15, 23, 42, 0.14) !important;
}

.op-cart-actions .op-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.op-cart-actions .op-btn-outline {
    color: var(--op-main) !important;
    border-color: var(--op-main) !important;
}

.op-cart-actions .op-btn-outline:hover {
    background: rgba(15, 23, 42, 0.06) !important;
    color: var(--op-main) !important;
}

.op-cart-actions .op-cart-checkout {
    margin-left: auto;
}

/* Page (terms, about etc) */
.op-page {
    padding: 4rem 2rem;
}

.op-page-inner {
    max-width: 720px;
    margin: 0 auto;
}

.op-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.op-page-body {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.op-back {
    color: var(--op-accent);
    text-decoration: none;
}

.op-back:hover {
    text-decoration: underline;
}

/* Modal */
.op-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.op-modal[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

.op-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.op-modal-dialog {
    position: relative;
    background: #fff;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    margin: auto;
}

.op-modal-dialog--stacked {
    max-height: 90vh;
    overflow: hidden;
}

.op-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0,0,0,0.05);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
}

.op-modal-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.op-modal-body--stacked {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-top: 1.25rem;
}

.op-modal-gallery {
    position: relative;
    flex-shrink: 0;
}

.op-modal-gallery--top {
    order: 1;
    width: 100%;
}

.op-modal-details {
    padding: 2rem 2rem 1.5rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.op-modal-details--scroll {
    order: 2;
}

.op-modal-details p,
.op-modal-desc {
    line-height: 1.65;
}

.op-modal-desc {
    flex: none;
    overflow: visible;
    max-height: none;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .op-modal-body {
        grid-template-columns: 1fr;
    }
    .op-modal {
        padding: 1rem;
    }
    .op-modal-dialog {
        max-height: 92vh;
    }
    .op-modal-footer {
        padding: 1rem;
        flex-wrap: wrap;
    }
    .op-modal-add {
        flex: 1 1 100%;
    }
}

.op-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--op-main);
}

.op-modal-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--op-accent);
    margin-bottom: 0.35rem;
}

.op-modal-stock {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--op-muted);
    margin-bottom: 1rem;
}

.op-modal-variants {
    margin-bottom: 1rem;
}

.op-modal-variants label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--op-text);
}

.op-modal-variants select,
.op-variant-select {
    width: 100%;
    min-height: 44px;
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1px solid var(--op-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.op-modal-desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--op-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Modal fixed footer */
.op-modal-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: #fff;
    border-top: 1px solid var(--op-border);
    border-radius: 0 0 12px 12px;
    flex-shrink: 0;
}

.op-qty-wrap label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--op-text);
}

.op-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--op-border);
    border-radius: 8px;
    overflow: hidden;
}

.op-qty-btn {
    width: 40px;
    height: 44px;
    border: none;
    background: var(--op-bg);
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--op-text);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.op-qty-btn:hover {
    background: var(--op-border);
}

.op-qty-input {
    width: 52px;
    min-height: 44px;
    padding: 0.5rem 0.25rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: none;
    border-left: 1px solid var(--op-border);
    border-right: 1px solid var(--op-border);
    border-radius: 0;
    text-align: center;
    -moz-appearance: textfield;
}

.op-qty-input::-webkit-outer-spin-button,
.op-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.op-modal-add {
    flex: 1;
}

/* Modal image slider */
.op-modal-gallery {
    position: relative;
}

.op-modal-slider {
    aspect-ratio: 1;
    max-height: 280px;
    background: var(--op-bg);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.op-modal-gallery--top .op-modal-slider {
    aspect-ratio: 4/3;
    max-height: 420px;
    width: 100%;
    min-height: 280px;
    border-radius: 12px 12px 0 0;
}

.op-modal-gallery--top .op-modal-slider-nav {
    padding: 0 2rem 1rem;
}

.op-modal-slides {
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.op-modal-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.op-modal-slide.active {
    display: block;
}

.op-modal-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.op-modal-slider-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.op-modal-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s;
}

.op-modal-slider-dot.active {
    background: #333;
}

.op-modal-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--op-main);
    transition: all 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.op-modal-slider-arrow:hover {
    background: #fff;
}

.op-modal-slider-arrow.prev {
    left: 8px;
}

.op-modal-slider-arrow.next {
    right: 8px;
}

.op-modal-slider.single-slide .op-modal-slider-arrow {
    display: none;
}

/* Footer – settings_footerColor ile senkron */
.op-footer {
    background: var(--op-footer);
    color: rgba(255,255,255,0.9);
    margin-top: auto;
}

.op-footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 2rem;
}

.op-footer-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.op-footer-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.op-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.op-footer-contracts {
    flex: 1;
}

.op-footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.op-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s, opacity 0.2s;
}

.op-social-icon:hover {
    color: #fff;
    opacity: 1;
}

.op-footer--light .op-social-icon {
    color: var(--op-muted);
}

.op-footer--light .op-social-icon:hover {
    color: var(--op-main);
}

.op-social-icon img {
    display: block;
    opacity: 0.88;
    transition: opacity 0.2s ease;
}

.op-social-icon:hover img {
    opacity: 1;
}

.op-footer-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.op-footer--light .op-footer-nav a {
    color: var(--op-text);
}

.op-footer-nav a:hover {
    color: var(--op-accent);
}

.op-footer--light .op-footer-nav a:hover {
    color: var(--op-main);
}

.op-footer-bottom {
    padding: 1rem 2rem;
}

.op-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.op-footer-copy-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.op-etbis-logo {
    height: 28px;
    width: auto;
    opacity: 0.9;
}

.op-etbis-link:hover .op-etbis-logo {
    opacity: 1;
}

.op-footer-copy {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}

.op-footer--light .op-footer-copy {
    color: var(--op-muted);
}

.op-footer--light .op-footer-top,
.op-footer--light .op-footer-bottom {
    border-color: var(--op-border);
}

.op-footer--light .op-payment-logos {
    filter: invert(1);
}

.op-footer-payment .op-payment-logos {
    height: 24px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .op-footer-top,
    .op-footer-bottom {
        padding: 0.75rem 1rem;
    }
    .op-footer-top-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    .op-footer-bottom-inner {
        flex-direction: column;
    }
}

/* Sayfa sayfaları: Hakkımızda, İletişim, Sözleşmeler */
.op-page {
    padding: 3rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.op-page-inner {
    max-width: 900px;
}

.op-breadcrumb {
    font-size: 0.875rem;
    color: var(--op-muted);
    margin-bottom: 2rem;
}

.op-breadcrumb a {
    color: var(--op-muted);
    text-decoration: none;
}

.op-breadcrumb a:hover {
    color: var(--op-accent);
}

.op-breadcrumb-sep {
    margin: 0 0.5rem;
}

.op-page-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--op-main);
    margin-bottom: 1.5rem;
}

.op-about-content .op-about-text,
.op-contract-content {
    line-height: 1.8;
    color: var(--op-text);
}

.op-contract-content p {
    margin-bottom: 1rem;
}

/* İletişim sayfası */
.op-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .op-contact-grid {
        grid-template-columns: 1fr;
    }
}

.op-contact-info h2,
.op-contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--op-main);
}

.op-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.op-contact-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.op-contact-list li a {
    color: var(--op-main);
    text-decoration: none;
}

.op-contact-list li a:hover {
    color: var(--op-accent);
}

.op-icon-addr::before,
.op-icon-email::before,
.op-icon-phone::before {
    font-style: normal;
}

.op-icon-addr, .op-icon-email, .op-icon-phone, .op-icon-check {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.op-icon-addr { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center; }
.op-icon-email { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") no-repeat center; }
.op-icon-phone { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center; }
.op-icon-check { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") no-repeat center; }
.op-contact-content {
    font-size: 0.95rem;
    color: var(--op-muted);
    line-height: 1.7;
}

.op-contact-form-wrap {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.op-contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--op-text);
}

.op-contact-form input,
.op-contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--op-border);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: inherit;
}

.op-contact-form input:focus,
.op-contact-form textarea:focus {
    outline: none;
    border-color: var(--op-accent);
}

.op-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.op-form-captcha {
    margin: 1rem 0;
}

.op-form-success {
    padding: 1rem 1.25rem;
    background: #ecfdf5;
    color: #059669;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.op-contact-map {
    width: 100%;
    min-height: 300px;
    background: var(--op-border);
}

.op-contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* İletişim – Modern kartlı tasarım (Zorela ile aynı) */
.op-contact-modern .op-contact-grid {
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .op-contact-modern .op-contact-grid {
        grid-template-columns: 1fr;
    }
}

.op-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.op-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #e5dfd5;
    /*border: 1px solid var(--op-border);*/
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.op-contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
}
.op-icon-email-wrap .op-icon-email,
.op-icon-phone-wrap .op-icon-phone,
.op-icon-addr-wrap .op-icon-addr {
    width: 24px;
    height: 24px;
    margin: 0;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
}
.op-icon-email-wrap .op-icon-email { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E"); }
.op-icon-phone-wrap .op-icon-phone { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.op-icon-addr-wrap .op-icon-addr { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.op-contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.op-contact-card-label {
    font-size: 0.8rem;
    color: var(--op-muted);
}
.op-contact-card-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--op-text);
    text-decoration: none;
    word-break: break-word;
}
a.op-contact-card-value:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.op-contact-form-modern .op-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.op-contact-form-modern .op-form-field {
    margin-bottom: 0;
}
.op-contact-form-modern .op-form-field label {
    margin-top: 0;
    margin-bottom: 0.35rem;
}
.op-contact-form-modern .op-form-field:first-of-type label { margin-top: 0; }
.op-contact-form-modern .op-form-field + .op-form-row,
.op-contact-form-modern .op-form-row + .op-form-field {
    margin-top: 1rem;
}
.op-contact-form-modern .op-form-field:has(textarea) {
    margin-top: 1rem;
}
.op-contact-form-modern input,
.op-contact-form-modern textarea {
    margin-bottom: 0;
}
.op-form-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.25rem 0 1.5rem;
}
.op-form-kvkk input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.25em;
    width: 1.125em;
    height: 1.125em;
    cursor: pointer;
}
.op-kvkk-label {
    font-size: 0.875rem;
    color: var(--op-text);
    cursor: pointer;
    line-height: 1.5;
}
.op-kvkk-label a {
    color: #3b82f6;
    text-decoration: none;
}
.op-kvkk-label a:hover {
    text-decoration: underline;
}
.op-contact-modern .op-contact-form-wrap {
    padding: 2.5rem;
    background: #e5dfd5;
    /*border: 1px solid var(--op-border);*/
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.op-contact-modern .op-contact-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--op-main);
    margin-bottom: 1.5rem;
    margin-top: 0;
}
.op-contact-modern .op-contact-btn {
    width: 100%;
    margin-top: 0;
}
.op-contact-map-wrap {
    margin-top: 2.5rem;
    width: 100%;
}
.op-contact-map-wrap .op-contact-map {
    width: 100%;
    min-height: 300px;
}
.op-contact-map-wrap .op-contact-map iframe {
    height: 370px;
    display: block;
}
@media (max-width: 600px) {
    .op-contact-form-modern .op-form-row {
        grid-template-columns: 1fr;
    }
}

/* OneProduct – ana sayfa vitrin */
.op-container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}
.op-hero {
    position: relative;
    min-height: min(72vh, 620px);
    display: flex;
    align-items: flex-end;
    padding: 4rem 0 3rem;
    overflow: hidden;
}
.op-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}
.op-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22,19,17,0.15) 0%, rgba(22,19,17,0.55) 100%);
}
.op-hero-inner {
    position: relative;
    z-index: 1;
    color: #fff;
}
.op-hero-watermark {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}
.op-hero-title {
    font-family: Montserrat, system-ui, sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.op-hero-tagline {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 1rem;
}
.op-hero-desc {
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
}
.op-trust {
    background: color-mix(in srgb, var(--op-accent) 12%, var(--op-bg));
    border-block: 1px solid var(--op-border);
    padding: 0.85rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--op-text);
}
.op-trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1rem;
}
.op-trust-sep {
    opacity: 0.45;
}
.op-spotlight {
    padding: 4rem 0;
    background: var(--op-bg);
}
.op-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .op-spotlight-grid {
        grid-template-columns: 1fr;
    }
}
.op-spotlight-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}
.op-spotlight-title {
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.op-spotlight-title a {
    color: inherit;
    text-decoration: none;
}
.op-spotlight-spot {
    color: var(--op-muted);
    margin-bottom: 1rem;
}
.op-spotlight-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.op-price-old {
    text-decoration: line-through;
    color: var(--op-muted);
    font-size: 0.95rem;
}
.op-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--op-accent);
}
.op-badge {
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}
.op-label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}
.op-select {
    width: 100%;
    max-width: 320px;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--op-border);
    margin-bottom: 1.25rem;
}
.op-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.op-btn-ghost {
    background: transparent;
    border: 2px solid var(--op-main);
    color: var(--op-main);
}
.op-stats {
    padding: 3rem 0;
    background: #fff;
}
.op-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 768px) {
    .op-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.op-stat-card {
    text-align: center;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--op-border);
}
.op-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--op-accent);
}
.op-stat-label {
    font-size: 0.9rem;
    color: var(--op-muted);
}
.op-about {
    padding: 4rem 0;
}
.op-section-title {
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.op-center {
    text-align: center;
}
.op-about-body {
    color: var(--op-text);
    line-height: 1.75;
}
.op-testimonials {
    padding: 4rem 0;
    background: color-mix(in srgb, var(--op-bg) 85%, #fff);
}
.op-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .op-testimonial-grid {
        grid-template-columns: 1fr;
    }
}
.op-quote {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--op-border);
    margin: 0;
}
.op-quote footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--op-muted);
}
.op-video {
    padding: 3rem 0;
}
.op-video-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}
.op-video-el {
    width: 100%;
    display: block;
}
.op-blog {
    padding: 4rem 0;
}
.op-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .op-blog-grid {
        grid-template-columns: 1fr;
    }
}
.op-blog-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    border: 1px solid var(--op-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.op-blog-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.op-blog-body {
    padding: 1rem 1rem 1rem 0;
}
.op-blog-all {
    margin-top: 1.5rem;
    display: inline-block;
}
.op-newsletter {
    padding: 4rem 0;
    background: var(--op-main);
    color: #fff;
}
.op-newsletter .op-section-title {
    color: #fff;
}
.op-newsletter-text {
    margin-bottom: 1.25rem;
    opacity: 0.92;
    max-width: 40rem;
}
.op-empty {
    padding: 3rem 0;
    text-align: center;
}
.op-link {
    color: var(--op-accent);
    font-weight: 600;
}

/* PDP (Vendo tabanlı şablon) */
.op-pdp {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}
.op-pdp-breadcrumb {
    font-size: 0.85rem;
    color: var(--op-muted);
    margin-bottom: 1.5rem;
}
.op-pdp-breadcrumb a {
    color: inherit;
    text-decoration: none;
}
.op-pdp-breadcrumb a:hover {
    text-decoration: underline;
}
.op-pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 900px) {
    .op-pdp-grid {
        grid-template-columns: 1fr;
    }
}
.op-pdp-gallery-multi {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.op-pdp-slide-img {
    width: 100%;
    border-radius: 12px;
}
.op-pdp-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}
.op-pdp-thumb {
    border: 2px solid transparent;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
}
.op-pdp-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
}
.op-pdp-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.op-pdp-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.75rem 0;
}
.op-pdp-form {
    margin-top: 1rem;
}
.op-pdp-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.op-pdp-desc-body {
    line-height: 1.75;
}
.op-pdp-specs {
    margin-top: 2rem;
}
.op-pdp-specs-grid {
    display: grid;
    gap: 0.5rem;
}

html.op-reveal .op-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
html.op-reveal .op-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ----- Safe area + overflow (mobil, notch) ----- */
.op-body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
}
.op-header-wrap {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
}
.op-footer {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}
html {
    overflow-x: clip;
}

/* ----- Tipografi (clamp) ----- */
.op-hero-title {
    font-size: clamp(1.85rem, 5vw, 3rem);
    line-height: 1.15;
    max-width: 22ch;
}
.op-hero-desc {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    max-width: 46rem;
}
.op-section-title {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
}

/* ----- Touch hedefleri ----- */
.op-btn-touch {
    min-height: 44px;
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: center;
    display: inline-flex;
    justify-content: center;
}
.op-account-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    margin-right: 0.5rem;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
}
.op-account-btn:hover {
    opacity: 0.85;
}
.op-header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ----- Sidemenu ek linkler ----- */
.op-sidemenu-meta {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    font-weight: 600;
}

/* ----- Auth / formlar ----- */
.op-auth {
    padding: 3rem 1rem 4rem;
}
.op-auth-inner {
    max-width: 420px;
    margin: 0 auto;
}
.op-auth-title {
    font-family: Montserrat, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.25rem;
}
.op-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.op-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--op-muted);
}
.op-input,
.op-select {
    width: 100%;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--op-border);
    border-radius: 10px;
    font: inherit;
}
.op-btn-block {
    width: 100%;
    justify-content: center;
}
.op-auth-links {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.op-auth-links a {
    color: var(--op-accent);
    font-size: 0.95rem;
}
.op-alert {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.op-alert--err {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.op-alert--ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.op-alert--warn {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}
.op-alert--info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ----- Sepet ----- */
.op-cart {
    padding: 2rem 1rem 4rem;
}
.op-cart-tablewrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    scrollbar-width: thin;
}
.op-cart-tablewrap::-webkit-scrollbar {
    height: 6px;
}
.op-cart-tablewrap::-webkit-scrollbar-thumb {
    background: var(--op-border);
    border-radius: 4px;
}
.op-cart-table {
    min-width: 560px;
}
.op-cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.op-cart-summary {
    max-width: 420px;
    margin-left: auto;
    padding: 1.25rem;
    border: 1px solid var(--op-border);
    border-radius: 12px;
    background: #fff;
}
.op-cart-sub,
.op-cart-ship,
.op-cart-total-line {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}
.op-cart-total {
    font-size: 1.15rem;
    margin: 1rem 0;
}

/* ----- Sipariş takibi (tema fallback) ----- */
.op-order {
    padding: 2rem 1rem 4rem;
}
.op-order-inner {
    max-width: 720px;
    margin: 0 auto;
}
.op-order-lead {
    margin-bottom: 1.25rem;
    color: var(--op-muted);
}
.hidden {
    display: none !important;
}
.op-order-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
@media (max-width: 640px) {
    .op-order-grid {
        grid-template-columns: 1fr;
    }
}
.op-order-stat {
    padding: 1rem;
    border: 1px solid var(--op-border);
    border-radius: 10px;
    background: #fff;
}
.op-order-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--op-muted);
}
.op-order-stat-val {
    font-weight: 600;
    margin-top: 0.35rem;
}
.op-order-addr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}
@media (max-width: 640px) {
    .op-order-addr {
        grid-template-columns: 1fr;
    }
}
.op-order-grand {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* ----- Hesap paneli ----- */
.op-dashboard {
    padding: 2rem 1rem 4rem;
}
.op-dash-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .op-dash-layout {
        grid-template-columns: 1fr;
    }
}
.op-dash-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--op-border);
    border-radius: 12px;
    background: #fff;
}
.op-dash-nav-link {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--op-text);
    font-weight: 600;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.op-dash-nav-link:hover {
    background: color-mix(in srgb, var(--op-accent) 12%, transparent);
}
.op-dash-nav-link--active {
    background: color-mix(in srgb, var(--op-accent) 18%, transparent);
}
.op-dash-panel {
    padding: 1rem 0 2rem;
}
.op-form--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 700px) {
    .op-form--grid {
        grid-template-columns: 1fr;
    }
}
.op-form-row--full {
    grid-column: 1 / -1;
}
.op-fieldset {
    border: 1px dashed var(--op-border);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
}
.op-legend {
    font-weight: 700;
    padding: 0 0.35rem;
}

/* ----- Yorumlar: yatay kaydırma (mobil) ----- */
@media (max-width: 900px) {
    .op-testimonial-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }
    .op-testimonial-grid .op-quote {
        flex: 0 0 min(88vw, 320px);
        scroll-snap-align: start;
    }
}

/* ----- Tablo genel ----- */
.op-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.op-table th,
.op-table td {
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid var(--op-border);
    text-align: left;
}
.op-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--op-muted);
}

/* About — rich layout */
.op-about-rich .op-page-inner {
    max-width: 1120px;
}
.op-about-hero {
    text-align: center;
    margin-bottom: 3rem;
}
.op-about-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gold-deep, #8e6b3a);
    margin: 0 0 0.5rem;
    font-weight: 600;
}
.op-about-title {
    margin: 0 auto 1rem;
}
.op-about-intro {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted, #5c534a);
    font-size: 1.05rem;
    line-height: 1.7;
}
.op-about-hero-img {
    margin: 2rem auto 0;
    max-width: 960px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(22, 19, 17, 0.12);
}
.op-about-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}
.op-about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin: 3rem 0;
}
.op-about-section--reverse .op-about-section-visual {
    order: 2;
}
.op-about-section-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(22, 19, 17, 0.1);
}
.op-about-section-copy h2 {
    margin-top: 0;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}
.op-about-section-body {
    line-height: 1.75;
    color: var(--ink, #1a1714);
}
.op-about-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}
.op-about-mv-card {
    padding: 1.75rem;
    border-radius: 16px;
    background: var(--cream, #faf7f2);
    border: 1px solid rgba(196, 160, 98, 0.18);
}
.op-about-mv-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-gold-deep, #8e6b3a);
}
.op-about-mv-card p {
    margin: 0;
    line-height: 1.7;
    color: var(--ink, #1a1714);
}
.op-about-cta {
    text-align: center;
    margin: 3rem auto 0;
    padding: 2.5rem 1.5rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(196, 160, 98, 0.08), rgba(196, 160, 98, 0.02));
    border: 1px solid rgba(196, 160, 98, 0.18);
}
.op-about-cta h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}
.op-about-cta p {
    margin: 0 auto 1.25rem;
    max-width: 640px;
    color: var(--muted, #5c534a);
    line-height: 1.7;
}
.op-contact-head {
    margin-bottom: 2rem;
    text-align: center;
}
.op-contact-intro {
    max-width: 640px;
    margin: 0.5rem auto 0;
    color: var(--muted, #5c534a);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .op-about-section,
    .op-about-mv {
        grid-template-columns: 1fr;
    }
    .op-about-section--reverse .op-about-section-visual {
        order: 0;
    }
}
