/* ============================================
   LIGHT LUXURY — Açık tonlu, lüks tema
   ============================================ */

:root {
    --bg: #f8f5f2;
    --bg-card: #ffffff;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #9a9a9a;
    --accent: #c9a227;
    --accent-hover: #b08d1c;
    --accent-dark: #8a6d1f;
    --secondary: #722f37;
    --border: #e8e2dc;
    --shadow: 0 4px 24px rgba(26, 26, 26, 0.06);
    --shadow-hover: 0 12px 40px rgba(26, 26, 26, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body) !important;
    background: var(--bg) !important;
    color: var(--text) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
}

.site-brand__logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.site-brand__logo span {
    color: var(--accent);
}

.site-brand {
    text-align: center;
}

.site-brand__tagline {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.nav-toggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
}

.site-nav__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item a {
    color: var(--accent);
}

.menu-item-has-children {
    position: relative;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    min-width: 180px;
    list-style: none;
    margin: 8px 0 0;
    padding: 8px 0;
    z-index: 101;
}

.menu-item-has-children:hover .sub-menu,
.menu-item-has-children.sub-open .sub-menu {
    display: block;
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    display: block;
    padding: 8px 16px;
}

/* Top header */
#topheader-wrap {
    background: var(--secondary);
    padding: 10px 0;
}

#topheader {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

#topnav-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

#topnav-menu::-webkit-scrollbar {
    display: none;
}

#topnav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

#topnav-menu a:hover {
    color: #fff;
}

/* Category strip */
.category-strip {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.category-strip__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

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

.cat-chip {
    flex: 0 0 auto;
    padding: 9px 18px;
    border-radius: 30px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}

.cat-chip:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.cat-chip__dot {
    margin-right: 6px;
}

/* Layout */
.content-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 24px 0 60px;
}

@media (max-width: 960px) {
    .content-wrap {
        grid-template-columns: 1fr;
    }
    .site-header__inner {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    .site-brand {
        text-align: left;
    }
    .nav-toggle {
        display: block;
        position: relative;
        top: auto;
        right: auto;
        margin-left: auto;
    }
    .site-nav {
        display: none;
        order: 3;
        width: 100%;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
    }
    .site-nav.open {
        display: block;
    }
    .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--bg);
        margin-top: 10px;
    }
}

/* Hero */
.page-hero {
    padding: 64px 0 48px;
    text-align: center;
}

.page-hero__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    margin: 0 0 18px;
    line-height: 1.1;
    color: var(--text);
}

.page-hero__title em {
    color: var(--secondary);
    font-style: italic;
}

.page-hero__meta {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

.page-header {
    padding: 40px 0 24px;
}

.archive-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

/* Section label */
.section-label {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin: 52px 0 28px;
}

.section-label__text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

.section-label__line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Visual card grid (homepage listings) */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

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

.visual-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f0ebe6;
}

.visual-card__image img,
.visual-card__image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.visual-card__image img {
    object-fit: cover;
    transition: transform 0.4s ease;
}

.visual-card:hover .visual-card__image img {
    transform: scale(1.04);
}

.cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.visual-card__body {
    padding: 24px;
}

.visual-card__body .entry-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.3;
}

.visual-card__body .entry-title a {
    color: var(--text);
    text-decoration: none;
}

.visual-card__body .entry-title a:hover {
    color: var(--secondary);
}

.visual-card__body .entry {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.visual-card__body .postinfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.visual-card__body .postinfo a {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}

.visual-card__body .postinfo a:hover {
    color: var(--secondary);
}

/* Blog cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.blog-card__media {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f0ebe6;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.04);
}

.blog-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card__body {
    padding: 24px;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.3;
}

.blog-card__title a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card__title a:hover {
    color: var(--secondary);
}

.blog-card__excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.blog-card__read {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}

.blog-card__read:hover {
    color: var(--secondary);
}

/* Article detail */
.article-detail {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
    text-align: center;
}

.article-detail__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 14px;
}

.article-detail__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    margin: 0 0 18px;
    line-height: 1.15;
}

.article-detail__meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.article-detail__meta a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.article-detail__featured {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.article-detail__featured img {
    width: 100%;
    height: auto;
    display: block;
}

.article-detail__content {
    text-align: left;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
}

.article-detail__content p {
    margin: 0 0 22px;
}

.article-detail__tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.article-detail__tags a,
.meta-tags a,
.tag-cloud-link {
    background: var(--bg);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.article-detail__tags a:hover,
.meta-tags a:hover,
.tag-cloud-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Profile detail */
.profile-detail {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.profile-detail__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.profile-detail__name,
.profile-detail h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin: 0 0 14px;
}

.profile-detail__meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.profile-detail__meta a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.profile-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}

.profile-gallery img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.profile-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 30px;
    text-align: left;
}

.profile-info__item {
    background: var(--bg);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-align: left;
}

.profile-info__item span {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.profile-info__item strong,
.profile-info__item label {
    display: block;
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
}

.profile-info__item a {
    color: var(--secondary);
    text-decoration: none;
}

.contact-buttons,
.profile-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-buttons a,
.profile-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: transform var(--transition), opacity var(--transition);
}

.contact-buttons a:hover,
.profile-contact a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-whatsapp,
.btn-wa {
    background: #25d366;
}

.btn-telegram,
.btn-tg {
    background: #0088cc;
}

.btn-call {
    background: var(--secondary);
}

.description-area {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin: 28px 0 18px;
    color: var(--text);
}

.description-area i {
    color: var(--accent);
    margin-right: 8px;
}

/* Pagination */
.post-pagination,
.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 0;
}

.post-pagination a,
.post-pagination span,
.pagination-bar a,
.pagination-bar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition);
}

.post-pagination a:hover,
.pagination-bar a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.post-pagination .current,
.pagination-bar span {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Sidebar */
.sidebar-widget,
.widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.sidebar-widget__title,
.widgettitle {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.widgettitle span {
    color: var(--text);
}

.sidebar-widget ul,
.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-widget li,
.widget li {
    border-bottom: 1px solid var(--border);
}

.sidebar-widget li:last-child,
.widget li:last-child {
    border-bottom: none;
}

.sidebar-widget li a,
.widget li a {
    display: block;
    padding: 12px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition), padding-left var(--transition);
}

.sidebar-widget li a:hover,
.widget li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.tzwb-posts-list li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.tzwb-posts-list li:last-child {
    border-bottom: none;
}

.tzwb-posts-list li > a:first-of-type {
    display: block;
    width: 100%;
}

.tzwb-posts-list img,
.tzwb-posts-list picture {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border);
    display: block;
}

.tzwb-posts-list a {
    color: var(--text);
    font-weight: 500;
    padding: 0;
}

.tzwb-posts-list a:hover {
    color: var(--accent);
    padding-left: 0;
}

.tzwb-entry-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

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

/* Footer */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.site-footer__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.site-footer__brand {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.site-footer__brand span {
    color: var(--accent);
}

.site-footer__desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.site-footer__heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li {
    margin-bottom: 10px;
}

.site-footer__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.site-footer__links a:hover {
    color: var(--accent);
}

.site-footer__bottom {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
}

/* Scroll top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 99;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

/* Utility */
.text-center { text-align: center; }
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Old layout compatibility */
#wrapper,
.container.hfeed {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

#wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 24px 0 60px;
}

@media (max-width: 960px) {
    #wrap {
        grid-template-columns: 1fr;
    }
}

#content {
    min-width: 0;
}

#sidebar {
    min-width: 0;
}

#sidebar .widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

#sidebar .widgettitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

#sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sidebar .widget li {
    border-bottom: 1px solid var(--border-soft);
    padding: 10px 0;
}

#sidebar .widget li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

#sidebar .widget li a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#sidebar .widget li a:hover {
    color: var(--secondary);
}

#sidebar .widget li a::before {
    content: "›";
    color: var(--accent);
    font-weight: 700;
}

#sidebar .widget iframe {
    display: block;
    width: 100%;
    border-radius: var(--radius-sm);
    margin: 0;
}

#sidebar .tzwb-posts-list li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

#sidebar .tzwb-posts-list li:last-child {
    border-bottom: none;
}

#sidebar .tzwb-posts-list li img,
#sidebar .tzwb-posts-list li picture {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
}

#sidebar .tzwb-posts-list li a {
    font-weight: 500;
    line-height: 1.4;
}

#sidebar .tzwb-posts-list li a::before {
    display: none;
}

#sidebar .tzwb-entry-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

#sidebar .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#sidebar .tagcloud a {
    display: inline-block;
    background: var(--bg-body);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px !important;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

#sidebar .tagcloud a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

#sidebar .tzwb-tabnavi {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    border-bottom: 1px solid var(--border);
}

#sidebar .tzwb-tabnavi a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

#sidebar .tzwb-tabnavi a.current-tab {
    color: var(--accent);
    border-bottom-color: var(--accent);
    font-weight: 600;
}

/* Vitrin grid overrides for light theme */
.vitrin-section .section-label {
    margin-top: 32px;
}

.vitrin-section .grid-container,
.grid-container {
    gap: 16px;
    margin-bottom: 24px;
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (min-width: 480px) {
    .vitrin-section .grid-container,
    .grid-container { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (min-width: 768px) {
    .vitrin-section .grid-container,
    .grid-container { grid-template-columns: repeat(3, 1fr) !important; }
}

.grid-item {
    margin: 0;
}

.vitrindekiler {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
    border-image: none;
}

.vitrindekiler:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.vitrindekiler-photo {
    border-radius: var(--radius-sm);
    pointer-events: none;
    height: 420px !important;
}

@media (min-width: 480px) {
    .vitrindekiler-photo { height: 480px !important; }
}

@media (min-width: 768px) {
    .vitrindekiler-photo { height: 520px !important; }
}

.vitrindekiler-photo__SubTitle {
    background: linear-gradient(1deg, rgba(26, 26, 26, 0.00) 21%, rgba(26, 26, 26, 0.85) 98%);
    color: #fff;
}

.vitrindekiler2__Content {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.75), transparent);
    padding-bottom: 8px;
}

.vitrindekiler-title-text,
.vitrindekiler2--title,
.vitrindekiler2--phone {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.vitrindekiler2--phone {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
}

/* Fotorama adjustments */
.fotorama {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
}

/* Legacy article markup compatibility */
.content-excerpt {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.content-excerpt .entry-title,
.content-excerpt .post-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 14px;
    line-height: 1.3;
}

.content-excerpt .entry-title a,
.content-excerpt .post-title a {
    color: var(--text);
    text-decoration: none;
}

.content-excerpt .entry-title a:hover,
.content-excerpt .post-title a:hover {
    color: var(--secondary);
}

.content-excerpt .wp-post-image,
.content-excerpt img.alignleft {
    float: left;
    width: 450px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-right: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.content-excerpt .entry {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.content-excerpt .entry p {
    margin: 0 0 16px;
}

.content-excerpt .more-link {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: none;
}

.content-excerpt .more-link:hover {
    color: var(--secondary);
}

.content-excerpt .postinfo {
    clear: both;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.content-excerpt .postmeta a {
    color: var(--secondary);
    text-decoration: none;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin: 0 0 16px;
}

.type-page {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.type-page .entry p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* No content found */
.not-found,
.type-page .entry p {
    color: var(--text-muted);
    font-size: 16px;
    text-align: center;
    padding: 40px 0;
}
