/* ============================================
   REVELLA - Modern Furniture E-commerce
   Saloni.furniture Inspired Design
   ============================================ */

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure ALL elements inherit the admin-chosen font */
body,
h1, h2, h3, h4, h5, h6,
p, span, a, li, td, th, label, legend,
blockquote, figcaption, cite,
button, input, select, textarea,
.btn, [class*="widget-"] * {
    font-family: var(--font-family-heading);
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
    /* Typography – ayarlardan gelir; yoksa varsayılan */
    --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --heading-font-weight: 300;
    --heading-letter-spacing: 3px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-heading);
    line-height: var(--body-line-height, 1.6);
    color: var(--text-dark);
    background: var(--white);
    font-size: var(--body-font-size, 16px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    overflow: visible;
}

/* ============================================
   BREADCRUMB BAR
   ============================================ */

.breadcrumb-bar {
    background: #f5f5f5;
    border-bottom: 1px solid #ebebeb;
}

.breadcrumb-nav {
    padding: 0.875rem 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--text-dark);
}

.breadcrumb-item--current span {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumb-sep {
    color: var(--text-lighter);
    flex-shrink: 0;
    margin-right: 0.25rem;
}

/* ============================================
   HEADER - Saloni Style
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    position: relative;
    display: block;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    position: absolute;
    transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger-inner {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
}

.mobile-menu-toggle.active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/* Top Bar (Dark Gray) – sabit yükseklik, açık/kapalı aynı, kompakt */
.header-top-bar {
    background: #2c2c2c;
    color: var(--white);
    min-height: 36px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    direction: ltr;
}

.header-top-bar .container {
    height: 100%;
}

.header-top-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 36px;
    gap: 2rem;
    overflow: visible;
    position: relative;
    direction: ltr;
}

.header-top-content > .language-switcher-nav {
    grid-column: 1;
    justify-self: start;
}

.header-top-content > .top-bar-links {
    grid-column: 2;
    justify-self: end;
}

.language-switcher-nav {
    flex-shrink: 0;
}

.language-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.language-item {
    margin: 0;
}

.language-link {
    display: block;
    padding: 0.35rem 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.language-item:last-child .language-link {
    border-right: none;
}

.language-link:hover,
.language-item.current-language .language-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Sağ üst: Satış Noktaları + Arama (ikon en sağda, tıklanınca input ikonun solunda açılır) */
.top-bar-links {
    flex-shrink: 0;
}

.top-links-list {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.top-links-list .top-link-item:first-child {
    order: 1;
}

.top-links-list .top-bar-search-wrap {
    order: 2;
}

.top-link-item {
    margin: 0;
}

.top-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    transition: var(--transition);
    padding: 0.35rem 0;
    white-space: nowrap;
}

.top-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Arama: kapalıyken sadece ikon, açıkken input ikonun solunda – tek satır */
.top-bar-search-wrap {
    flex-shrink: 0;
}

.top-bar-search {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: auto;
    min-width: auto;
    justify-content: flex-end;
}

.top-bar-search-input {
    width: 0;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent !important;
    color: var(--white);
    font-size: 0.875rem;
    transition: width 0.2s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.top-bar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.top-bar-search-input::-webkit-search-cancel-button,
.top-bar-search-input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

/* Açıkken bar ile uyumlu, kapalı ile aynı yükseklik (28px), daha kompakt */
.top-bar-search:has(.top-bar-search-input.is-open) {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 28px;
    min-height: 28px;
    padding: 0 2px 0 0.5rem;
    font-size: 0.75rem;
    color: var(--white);
    box-shadow: none;
    align-items: center;
}

.top-bar-search:has(.top-bar-search-input.is-open) .top-bar-search-btn {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-search:has(.top-bar-search-input.is-open) .top-bar-search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.top-bar-search:has(.top-bar-search-input.is-open) .top-bar-search-btn .header-search-icon {
    width: 14px;
    height: 14px;
}

.top-bar-search-input.is-open {
    width: 140px;
    min-width: 140px;
    padding: 0.25rem 0.35rem 0.25rem 0;
    font-size: 0.75rem;
    line-height: 1.2;
    background: transparent;
    color: var(--white);
}

.top-bar-search-input.is-open::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.top-bar-search-input.is-open:focus {
    outline: none;
}

.top-bar-search:has(.top-bar-search-input.is-open:focus) {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

/* Kapalıyken ikon: 28px, açıkla aynı yükseklik */
.top-bar-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.top-bar-search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.top-bar-search-btn .header-search-icon {
    width: 14px;
    height: 14px;
    pointer-events: none;
}


.search-form-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
    min-width: 280px;
    width: 100%;
}

.search-form-container .search-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 2px;
    font-size: 0.875rem;
    color: var(--text-dark);
    background: #ffffff;
    transition: var(--transition);
    box-sizing: border-box;
    min-width: 0;
}

.search-form-container .search-input:focus {
    outline: none;
    border-color: rgba(15, 23, 42, 0.3);
}

.search-form-container .search-submit {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background: #2c2c2c;
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.search-form-container .search-submit:hover {
    background: #1a1a1a;
}

.search-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(15, 23, 42, 0.05);
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 4px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    z-index: 10;
}

.search-close:hover {
    color: var(--text-light);
    background: rgba(15, 23, 42, 0.12);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Main Navigation Bar (White) */
.header-main-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: visible;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 3rem;
    position: relative;
    overflow: visible;
}

/* Logo */
.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--text-dark);
    text-transform: none;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: none;
    text-decoration: underline;
    text-underline-offset: 2px;
    line-height: 1.2;
}

/* Navigation */
.main-nav-left,
.main-nav-right {
    flex: 1;
}

.main-nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav-right .main-nav-list {
    justify-content: flex-end;
}

.nav-item {
    position: static;
}

.nav-link-wrapper {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    padding: 0.5rem 0;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-light);
}

.dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: inherit;
}

.dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.mega-menu-item.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    z-index: 1000;
    padding: 2rem 0;
    box-sizing: border-box;
    margin-left: calc(-50vw + 50%);
}

.mega-menu-item.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
}

.mega-menu-container-thumbnails {
    display: block !important;
    padding: 2rem 1.5rem;
}

/* Collections Mega Menu - Column Layout */
.mega-menu-column {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 220px;
    padding: 0 2.5rem;
    border-right: 1px solid var(--border-color);
}

.mega-menu-column:last-child {
    padding-right: 0;
    border-right: none;
}

.mega-menu-column:first-child {
    padding-left: 0;
}

.mega-menu-group {
    margin-bottom: 1.75rem;
}

.mega-menu-group:last-child {
    margin-bottom: 0;
}

.mega-menu-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    padding: 0;
    border: none;
    line-height: 1.4;
}

.mega-menu-heading-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.mega-menu-heading-link:hover {
    color: var(--primary-color);
}

.mega-menu-nav {
    margin: 0;
    padding: 0;
}

.mega-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-list-item {
    margin: 0;
    padding: 0;
}

.mega-menu-link {
    display: block;
    padding: 0.375rem 0;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 400;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.mega-menu-link:hover {
    color: var(--text-dark);
}

/* Series/Discover Mega Menu - Thumbnail Layout */
.mega-menu-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.mega-menu-thumbnail {
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mega-menu-thumbnail:hover {
    transform: translateY(-4px);
}

.thumbnail-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    background: var(--secondary-color);
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mega-menu-thumbnail:hover .thumbnail-image img {
    transform: scale(1.05);
}

.thumbnail-title {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: var(--text-dark);
}

/* News Mega Menu */
.mega-menu-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-featured {
    display: flex;
    flex-direction: column;
}

.news-featured-image {
    margin: 0 0 1rem 0;
    overflow: hidden;
    border-radius: 4px;
}

.news-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-featured-content {
    flex: 1;
}

.news-featured-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.news-featured-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.news-featured-title a:hover {
    color: var(--text-light);
}

.news-featured-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.news-featured-excerpt {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-items {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.news-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-item-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
}

.news-item-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.news-item-title a:hover {
    color: var(--text-light);
}

.news-item-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.news-view-all {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--text-dark);
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    align-self: flex-start;
}

.news-view-all:hover {
    background: var(--text-light);
}

/* Responsive */
@media (max-width: 1600px) {
    .mega-menu-container {
        max-width: 100%;
        padding: 2rem 2rem;
    }
    
    .mega-menu-column {
        min-width: 200px;
        max-width: 220px;
        padding-right: 2.5rem;
    }
}

@media (max-width: 1400px) {
    .mega-menu-container {
        padding: 2rem 1.5rem;
    }
    
    .mega-menu-column {
        min-width: 180px;
        max-width: 200px;
        padding-right: 2rem;
    }
}

@media (max-width: 1024px) {
    .header-top-content {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }
    
    .mega-menu {
        width: 100vw;
        left: 0;
        right: 0;
        margin-left: 0;
        transform: translateY(-10px);
        padding: 1.5rem 0;
    }
    
    .mega-menu-item.active .mega-menu {
        transform: translateY(0);
    }
    
    .mega-menu-container {
        padding: 1.5rem 1.5rem;
        gap: 0;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .mega-menu-column {
        min-width: 180px;
        max-width: 200px;
        flex: 0 0 auto;
        padding-right: 2rem;
    }
    
    .mega-menu-group {
        margin-bottom: 1.5rem;
    }
    
    .mega-menu-news {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-top-bar {
        display: none;
    }
    
    .header-main-content {
        padding: 1rem 0;
    }
    
    .mega-menu {
        width: 100vw;
        left: 0;
        right: 0;
        margin-left: 0;
        padding: 1rem 0;
    }
    
    .mega-menu-container {
        padding: 0 1rem;
        gap: 1rem;
        flex-direction: column;
    }
    
    .mega-menu-column {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .main-nav-left,
    .main-nav-right {
        display: none;
    }
    
    .header-logo {
        position: static;
        transform: none;
        margin: 0 auto;
    }
    
    .site-logo {
        height: 32px;
    }
    
    .logo-main {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }
    
    .logo-sub {
        font-size: 0.625rem;
        letter-spacing: 1px;
    }
}

/* ============================================
   HERO / HOME PAGE - Saloni Style
   ============================================ */

.home-page {
    width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--secondary-color);
    margin-bottom: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Collections Page */
.collections-page {
    padding: 5rem 0;
    min-height: 60vh;
}

.collections-page .page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.collections-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 3px;
    color: var(--text-dark);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.collection-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--secondary-color);
    position: relative;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.collection-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--text-light);
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 2px;
}

.collection-info {
    padding: 2rem 1.5rem;
    text-align: center;
}

.collection-info h2 {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.collection-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state p {
    font-size: 1.1rem;
}

/* Featured Categories - Saloni Style */
.featured-categories {
    padding: 6rem 0;
    background: var(--white);
}

.featured-categories h2 {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: none;
    letter-spacing: 3px;
    color: var(--text-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
    background: var(--secondary-color);
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 2px;
    line-height: 1.4;
}

/* Featured Products - Saloni Style */
.featured-products {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.featured-products h2 {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: none;
    letter-spacing: 3px;
    color: var(--text-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.products-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.products-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.products-grid.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.products-grid.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

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

@media (max-width: 768px) {
    .products-grid.grid-3,
    .products-grid.grid-4,
    .products-grid.grid-5,
    .products-grid.grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid.grid-2,
    .products-grid.grid-3,
    .products-grid.grid-4,
    .products-grid.grid-5,
    .products-grid.grid-6 {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: transparent;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: none;
}

.product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 1px;
}

.product-info {
    padding: 0.5rem 0.25rem 0;
    text-align: center;
}

.product-info h3 {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Blog Section - Saloni Style */
.latest-posts {
    padding: 6rem 0;
    background: var(--white);
}

.latest-posts h2 {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: none;
    letter-spacing: 3px;
    color: var(--text-dark);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.post-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.post-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--secondary-color);
}

.post-card h3 {
    padding: 2rem 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 1px;
    line-height: 1.5;
}

.post-card p {
    padding: 0 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

.post-card .date {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-lighter);
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 1px;
}

/* ============================================
   CATEGORY PAGE - Saloni Style
   ============================================ */

.category-page {
    padding: 4rem 0 5rem;
    min-height: 60vh;
}

/* Category Header */
.category-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.category-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.category-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.2;
}

.category-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Arama + Filtreler: tek blok, ortada, diğer sayfalarla uyumlu */
.category-search-filters-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.category-search-filters-form {
    width: 100%;
}

/* Kart yok: sadece içerik, çerçeve/gölge yok */
.search-filters-inner,
.search-filters-header {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.search-filters-inner {
    padding: 0;
}

/* Arama alanı: daha sade ve şık */
.search-filters-search {
    margin-bottom: 0;
}

.search-filters-search .category-search-input-wrapper {
    max-width: 100%;
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    padding: 0 0.25rem 0 0;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-filters-search .category-search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.06);
    background: var(--white);
}

.search-filters-search .search-icon {
    left: 1rem;
    color: var(--text-lighter);
}

.search-filters-search .category-search-input {
    padding: 0.5rem 2.5rem 0.5rem 2.75rem;
    font-size: 0.875rem;
    background: transparent !important;
    border: none !important;
    border-radius: 2rem;
    box-shadow: none !important;
}

.search-filters-search .category-search-input::placeholder {
    color: var(--text-lighter);
}

.search-filters-search .category-search-input:focus {
    box-shadow: none;
}

.search-filters-search .category-search-clear-btn {
    right: 0.5rem;
    width: 28px;
    height: 28px;
}

.search-filters-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.75rem 0;
}

.search-filters-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem 1.25rem;
}

.filter-group-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    min-width: 0;
}

/* Başlık ile aynı yazı stili (title style) */
.filter-group-label {
    font-family: var(--font-family-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: var(--heading-letter-spacing);
    color: var(--text-dark);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.filter-group-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.filter-options-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
}

/* form label { display: block } ezmesin diye: filtre chip'leri yan yana */
.category-search-filters-form .filter-options-inline label.filter-option-chip,
.category-search-filters-form .filter-option-chip {
    display: inline-flex !important;
    flex-direction: row !important;
    margin-bottom: 0 !important;
}

.search-filters-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Category Search (form içi, arama + filtre blokunda kullanılıyor) */
.category-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-lighter);
    pointer-events: none;
    z-index: 1;
}

.category-search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: all 0.2s ease;
}

.category-search-input::placeholder {
    color: var(--text-lighter);
}

.category-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

.category-search-clear-btn {
    position: absolute;
    right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--text-lighter);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.category-search-clear-btn:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* Eski kategori-search-wrapper (sadece filtre olmayan sayfalarda kullanılırsa) */
.category-search-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.category-search-form {
    position: relative;
}

/* Product Groups */
.category-product-groups {
    margin: 3rem 0;
}

.product-groups-title {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-groups-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-group-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.product-group-btn:hover {
    border-color: var(--text-dark);
    background: var(--gray-50);
}

.product-group-btn.active {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* Filtre chip ve butonlar (arama+filtre blokunda kullanılıyor) */
.filter-option-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family-heading);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: var(--heading-letter-spacing);
    color: var(--text-dark);
}

.filter-option-chip:hover {
    border-color: var(--text-dark);
    background: var(--secondary-color);
}

.filter-option-chip input[type="checkbox"] {
    margin: 0;
    width: 12px;
    height: 12px;
    cursor: pointer;
    accent-color: var(--text-dark);
}

.filter-option-chip input[type="checkbox"]:checked + .filter-option-label {
    font-weight: 600;
}

.filter-option-label {
    user-select: none;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.filter-btn-apply {
    background: var(--text-dark);
    color: var(--white);
}

.filter-btn-apply:hover {
    background: #333;
    color: var(--white);
}

.filter-btn-clear {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.filter-btn-clear:hover {
    border-color: var(--text-dark);
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .category-search-filters-block {
        margin-left: 0;
        margin-right: 0;
    }
    .search-filters-grid {
        gap: 0.5rem 1rem;
    }
    .filter-group-inline {
        align-items: center;
    }
}

/* Legacy Support */
.category-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.category-description {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.child-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.child-categories a {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    text-transform: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 300;
}

.child-categories a:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
    background: var(--secondary-color);
}

/* ============================================
   PRODUCT DETAIL PAGE - Unified Design
   ============================================ */

.product-page {
    padding: 0 0 5rem;
}

/* Container */
.pd-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 1. Hero Image - full width, edge to edge */
.pd-hero {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.pd-hero__img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 80vh;
}

.pd-hero__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
}

.pd-hero__placeholder span {
    font-size: 1.25rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 1px;
}

/* 2. Product Title */
.pd-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: var(--heading-font-weight, 300);
    text-transform: uppercase;
    letter-spacing: var(--heading-letter-spacing, 3px);
    color: var(--text-dark);
    text-align: center;
    margin: 2rem 0 1.5rem;
    line-height: 1.3;
}

/* 3. Gallery Carousel */
.pd-carousel {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 2.5rem;
    position: relative;
}

.pd-carousel__track {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.pd-carousel__slide {
    flex: 1 1 calc(33.333% - 0.333rem);
    min-width: 0;
}

.pd-carousel__thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 2px solid transparent;
    background: #f5f5f5;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s, opacity 0.2s;
    aspect-ratio: 4/3;
}

.pd-carousel__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-carousel__thumb:hover {
    opacity: 0.85;
}

.pd-carousel__thumb.active {
    border-color: var(--accent-color, #d4af37);
}

.pd-carousel__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: rgba(0,0,0,0.04);
    border: none;
    cursor: pointer;
    padding: 0 0.75rem;
    color: var(--text-dark);
    transition: background 0.2s, opacity 0.3s;
    flex-shrink: 0;
    border-radius: 4px;
}

.pd-carousel__arrow:hover {
    background: rgba(0,0,0,0.08);
}

.pd-carousel__counter {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    min-width: 1em;
    text-align: center;
}

/* Specs section (between title and gallery) */
.pd-specs-section {
    margin-bottom: 2.5rem;
}

/* 4. Description */
.pd-description {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.pd-description p {
    margin-bottom: 1rem;
}

/* Form section (full width, stacked below gallery) */
.pd-form-section {
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section titles */
.pd-section-title {
    font-family: var(--font-family-heading);
    font-size: 0.95rem;
    font-weight: var(--heading-font-weight, 300);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-color);
}

/* ── Dimension Buttons (button/tabs mode) ── */
.pd-dimensions {
    margin-bottom: 2rem;
}

.pd-dim-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pd-dim-btn {
    padding: 0.5rem 1.1rem;
    border: 1.5px solid var(--border-color);
    background: #fff;
    color: var(--text-dark);
    font-size: 0.825rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pd-dim-btn:hover {
    border-color: var(--text-dark);
    background: rgba(0,0,0,0.02);
}

.pd-dim-btn.active,
.pd-dim-btn[aria-expanded="true"] {
    background: var(--accent-color, #d4af37);
    color: #fff;
    border-color: var(--accent-color, #d4af37);
}

.pd-dim-panels {
    margin-top: 0.5rem;
}

.pd-dim-panel {
    padding: 1rem 0;
}

.pd-dim-panel.hidden,
.pd-dim-panel[hidden] {
    display: none !important;
}

/* ── Dimension Image Cards (image mode) ── */
.pd-dim-images {
    margin-bottom: 2rem;
}

.pd-dim-images__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.pd-dim-card {
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    text-align: center;
}

.pd-dim-card:hover {
    border-color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pd-dim-card.active {
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 0 0 2px var(--primary-color, #3b82f6);
}

.pd-dim-card__label {
    padding: 0.75rem 0.5rem 0.25rem;
    font-family: var(--font-family-heading);
    font-size: 0.85rem;
    font-weight: var(--heading-font-weight, 300);
    letter-spacing: 1px;
    color: var(--text-dark);
}

.pd-dim-card__img {
    padding: 0.5rem;
}

.pd-dim-card__img img {
    width: 100%;
    display: block;
    object-fit: contain;
    max-height: 160px;
}

.pd-dim-card__specs {
    padding: 0.5rem 0.75rem 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.pd-dim-card__specs span {
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
}

/* ── Specs ── */
.pd-specs-heading {
    font-family: var(--font-family-heading);
    font-size: 0.8rem;
    font-weight: var(--heading-font-weight, 300);
    margin-bottom: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}

.pd-specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pd-specs-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.pd-specs-list li:last-child { border-bottom: none; }

.pd-specs-list strong {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.85rem;
    min-width: 140px;
}

.pd-specs-list span {
    color: var(--text-light);
}

.pd-specs-empty {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ── Contact Form ── */
.pd-form {
    background: var(--secondary-color);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.pd-form__title {
    font-family: var(--font-family-heading);
    font-size: 0.95rem;
    font-weight: var(--heading-font-weight, 300);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.pd-form__row {
    margin-bottom: 1.25rem;
}

.pd-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.pd-form input,
.pd-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.pd-form input:focus,
.pd-form textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

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

.pd-form__submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: inherit;
}

.pd-form__submit:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

/* 6. Extra Gallery (no title) */
.pd-extra-gallery {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.pd-extra-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.pd-extra-gallery__item {
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
}

.pd-extra-gallery__item img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* 7. Related Products */
.pd-related {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.pd-related__title {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: var(--heading-font-weight, 300);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    color: var(--text-dark);
    text-transform: uppercase;
}

/* Product card spacing fix - tighter name under image */
.pd-related .product-info {
    padding: 0.5rem 0.25rem 0;
}

.pd-related .product-image {
    aspect-ratio: auto;
}

.pd-related .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
    .pd-extra-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pd-dim-images__grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .pd-container {
        padding: 0 20px;
    }
    .pd-extra-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pd-title {
        font-size: 1.5rem;
    }
    .pd-dim-images__grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 480px) {
    .pd-extra-gallery__grid {
        grid-template-columns: 1fr;
    }
    .pd-title {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    .pd-carousel__arrow {
        padding: 0 0.4rem;
    }
    .pd-dim-images__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Bölüm başlıkları (Standart Ölçü, Teknik Özellikler, Bilgi Talep) */
.product-section-title {
    font-family: var(--font-family-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-color);
}

/* İki kolonlu alt alan: Sol=Özellikler, Sağ=Bilgi Al */
.product-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.product-bottom-grid--form-only {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.product-bottom-left {
    min-width: 0;
}

.product-bottom-right {
    min-width: 0;
}

.product-bottom-right .product-info-block {
    margin-bottom: 0;
    position: sticky;
    top: 120px;
}

/* Ölçü butonları */
.product-dimensions-section {
    margin-bottom: 2rem;
    padding: 0;
}

.product-dimensions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-dimension-btn {
    padding: 0.5rem 1.1rem;
    border: 1.5px solid var(--border-color);
    background: var(--white, #fff);
    color: var(--text-dark);
    font-size: 0.825rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.product-dimension-btn:hover {
    border-color: var(--text-dark);
    background: rgba(0,0,0,0.02);
}

.product-dimension-btn.active,
.product-dimension-btn[aria-expanded="true"] {
    background: var(--accent-color, #d4af37);
    color: var(--white, #fff);
    border-color: var(--accent-color, #d4af37);
}

/* Ölçü altında teknik özellikler */
.product-dimension-specs-wrap {
    margin-top: 0.5rem;
}

.product-dimension-specs {
    padding: 1.5rem 0;
}

.product-dimension-specs.hidden,
.product-dimension-specs[hidden] {
    display: none !important;
}

.product-specs-heading {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}

.product-specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-specs-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.product-specs-list li:last-child { border-bottom: none; }

.product-specs-list strong {
    color: var(--text-dark);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    min-width: 140px;
}

.product-specs-list span {
    color: var(--text-light);
}

.product-specs-empty {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Teknik özellikler bölümü (ölçüsüz ürün) */
.product-specs-section {
    margin-bottom: 2rem;
}

/* Açıklama */
.product-description-block {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Bilgi Al Formu (eski basit form) */
.product-info-block {
    margin-bottom: 3rem;
}

.info-request-form {
    background: var(--secondary-color);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    max-width: none;
}

.info-request-form h3 {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.info-request-form .form-row {
    margin-bottom: 1.25rem;
    display: block;
}

.info-request-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 400;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}

.info-request-form input,
.info-request-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--white, #fff);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s;
    color: var(--text-dark);
}

.info-request-form input:focus,
.info-request-form textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

.info-request-form textarea {
    resize: vertical;
    min-height: 120px;
}

.info-request-form .btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white, #fff);
    border: none;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: inherit;
}

.info-request-form .btn-submit:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

/* İlgili Ürünler */
.related-products {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.related-products h2 {
    font-size: 1.5rem;
    font-weight: var(--heading-font-weight, 300);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: none;
    letter-spacing: 3px;
    color: var(--text-dark);
}

/* İlgili ürün kartları: kare resim, çerçevesiz */
.related-products .product-card,
.pd-related .product-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    background: transparent;
}

.related-products .product-card:hover,
.pd-related .product-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.related-products .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--secondary-color);
    position: relative;
}

.related-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

.related-products .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-products .product-info {
    padding: 0.5rem 0.5rem 0;
    text-align: center;
}

.related-products .product-info h3 {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* ============================================
   FOOTER - Saloni Style
   ============================================ */

/* ============================================
   FOOTER - Revella Design (7 Columns)
   ============================================ */

/* ============================================
   FOOTER - Site Footer (Saloni Style)
   ============================================ */

.site-footer {
    margin-top: 4rem;
}

.footer-bg {
    background: #2c2c2c;
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-bg .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Grid - 7 columns tek satır, dar kolonlar */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 160px;
}

.footer-column h4 {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.6875rem;
    font-weight: 400;
    transition: var(--transition);
    display: block;
    line-height: 1.5;
    padding: 0.0625rem 0;
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-column a:hover {
    color: var(--white);
}

/* Social Media Section (Centered) */
.footer-social {
    text-align: center;
    padding: 2.5rem 0 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.15em;
    letter-spacing: 1px;
    color: var(--white);
    margin: 0 0 1.5rem 0;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social-icons .social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Brand colors on hover */
.footer-social-icons .social-icon--facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}
.footer-social-icons .social-icon--instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
}
.footer-social-icons .social-icon--twitter:hover {
    background: #000;
    border-color: #333;
}
.footer-social-icons .social-icon--linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}
.footer-social-icons .social-icon--youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}
.footer-social-icons .social-icon--tiktok:hover {
    background: #000;
    border-color: #25f4ee;
}
.footer-social-icons .social-icon--whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}
.footer-social-icons .social-icon--pinterest:hover {
    background: #e60023;
    border-color: #e60023;
}

/* Footer Bottom - Legal Links (Centered) & Copyright (Below) */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-legal a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 400;
    text-align: center;
    margin-top: 0.5rem;
}

/* Responsive Footer - tek satır daha geniş ekrana kadar korunur */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem 1.25rem;
    }
    .footer-column {
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .footer-bg {
        padding: 2rem 0 1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
    
    .footer-column h4 {
        font-size: 0.6875rem;
    }
    .footer-column a,
    .footer-column span {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-bottom .legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   CONTACT PAGE - Saloni Style
   ============================================ */

/* ============================================
   CONTACT PAGE - Saloni Style
   ============================================ */

.contact-page {
    padding: 0;
    min-height: 60vh;
}

.contact-section {
    margin-bottom: 5rem;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 2.5rem;
}

.factory-info-card-wrapper .section-header,
.contact-form-wrapper .section-header {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: 1.75rem;
    font-weight: var(--heading-font-weight);
    text-transform: none;
    letter-spacing: var(--heading-letter-spacing);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 800px;
}

/* Factory Map Top - Full Width */
.factory-map-top-wrapper {
    width: 100%;
    margin-bottom: 0;
}

.factory-map-top {
    width: 100%;
    height: 450px;
    background: var(--secondary-color);
    border: none;
    border-radius: 0;
    overflow: hidden;
}

/* Factory Contact Section */
.factory-contact-section {
    padding: 4rem 0;
}

.factory-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.factory-info-card-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

/* Factory Section */
.factory-section {
    margin-bottom: 5rem;
}

.factory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.factory-info {
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Bize Yazın kartı – FABRİKA kartı ile aynı yükseklik (contact form tarafı) */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.contact-form-card .contact-form {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}


.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    flex-shrink: 0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    color: var(--text-light);
    margin-top: 0.125rem;
}

.info-content {
    flex: 1;
}

.contact-info-item strong {
    font-weight: 600;
    margin-right: 0.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

.factory-map,
.showroom-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container-full {
    width: 100%;
    height: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.map-container.leaflet-container {
    border-radius: 8px;
}

/* Intro Section */
.intro-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 3rem 2.5rem;
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 5rem;
}

.contact-form {
    width: 100%;
    margin-top: 2rem;
}

.contact-form-wrapper .contact-form {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    margin-top: 0;
    min-height: 0;
}

.contact-form-wrapper .contact-form form {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.contact-form-wrapper .section-header {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.submit-button:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-message,
.error-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.success-message svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-message svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.error-message ul {
    margin: 0;
    padding-left: 1.5rem;
    flex: 1;
}

/* Showrooms Section */
.showrooms-section {
    margin-top: 5rem;
}

.showrooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.showroom-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    transition: var(--transition);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.showroom-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--text-dark);
    transform: translateY(-4px);
}

.showroom-name {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1.5px;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--border-color);
}

.showroom-info {
    margin: 0 0 1.5rem 0;
}

.showroom-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.showroom-item:last-child {
    margin-bottom: 0;
}

.showroom-item .info-icon {
    flex-shrink: 0;
    color: var(--text-light);
    margin-top: 0.125rem;
}

.showroom-item .info-content {
    flex: 1;
}

.showroom-item strong {
    font-weight: 600;
    margin-right: 0.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.showroom-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.showroom-item a:hover {
    color: var(--accent-color);
}

.instagram-link {
    display: inline-block;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1px;
}

.showroom-map {
    margin-top: 1.5rem;
    height: 250px;
}

/* Responsive */
@media (max-width: 1024px) {
    .factory-map-top {
        height: 400px;
    }
    
    .factory-contact-section {
        padding: 3rem 0;
    }
    
    .factory-contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .factory-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .showrooms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .factory-map-top {
        height: 350px;
    }
    
    .factory-contact-section {
        padding: 2rem 0;
    }
    
    .contact-page {
        padding: 0;
    }
    
    .contact-section {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .intro-section {
        padding: 2rem 1.5rem;
    }
    
    .showroom-card {
        padding: 1.5rem;
    }
}

.map-container {
    margin-top: 1.5rem;
    width: 100%;
    height: 300px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.map {
    width: 100%;
    height: 100%;
}

/* ============================================
   FORMS - Saloni Style
   ============================================ */

form {
    max-width: 600px;
    margin: 2rem auto;
}

form div {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 400;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}

form input,
form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    color: var(--text-dark);
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

form button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

form button:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

/* ============================================
   PAGINATION - Modern Clean Style
   ============================================ */

.pagination-wrapper {
    margin: 3rem 0;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Arrow Buttons */
.pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0.375rem;
    flex-shrink: 0;
}

.pagination-arrow:hover:not(.disabled) {
    background: var(--gray-50);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-arrow.disabled {
    color: var(--gray-400);
    border-color: var(--gray-200);
    background: var(--gray-50);
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-arrow svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* Page Numbers */
.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pagination-page {
    margin: 0;
}

.pagination-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    background: transparent;
    transition: all 0.2s ease;
}

.pagination-page-link:hover {
    color: var(--primary-color);
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.pagination-page.active .pagination-page-link {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    cursor: default;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Legacy Support */
.pagination,
.pagination-pages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    flex-direction: row;
}

.pagination .page-item,
.pagination-page {
    margin: 0;
    display: inline-block;
}

.pagination .page-link,
.pagination-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background: white;
    transition: all 0.2s ease;
}

.pagination .page-link:hover:not(.disabled):not(.active),
.pagination-page-link:hover {
    background: var(--gray-50);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination .page-item.active .page-link,
.pagination-page.active .pagination-page-link {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--gray-50);
    color: var(--gray-500);
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .footer-content {
        padding: 0 30px;
    }
    
    .footer-bottom {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1024px) {

    .categories-grid,
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .header-top {
        flex-wrap: wrap;
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .header-actions {
        margin-left: auto;
    }
    
    .search-form input {
        width: 150px;
    }
    
    .search-form input:focus {
        width: 180px;
    }
    
    .language-switcher {
        padding-right: 1rem;
    }
    
    .categories-grid,
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        padding: 0 20px;
    }
    
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .category-page h1 {
        font-size: 1.75rem;
    }
    
    .featured-categories h2,
    .featured-products h2,
    .latest-posts h2 {
        font-size: 1.25rem;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .featured-categories,
    .featured-products,
    .latest-posts {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        padding: 0.75rem 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    .search-form {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .footer-bottom {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .category-page h1 {
        font-size: 1.5rem;
    }
    
    .product-info h1 {
        font-size: 1.5rem;
    }
    
}

/* ============================================
   BLOG PAGE - Saloni Style
   ============================================ */

/* Blog Page */
.blog-page {
    padding: 5rem 0;
    min-height: 60vh;
}

.blog-page .page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-page .page-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-content {
    padding: 2rem;
}

.post-content h2 {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-date {
    font-size: 0.875rem;
    color: var(--text-lighter);
    text-transform: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-read-more {
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.post-card:hover .post-read-more {
    gap: 0.75rem;
    color: var(--accent-color);
}

.pagination-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* Blog Detail Page */
.blog-detail-page {
    padding: 0 0 5rem;
    min-height: 60vh;
}

/* Kapak yoksa header ile içerik arasında boşluk */
.blog-detail-page--no-hero {
    padding-top: 5rem;
}

/* Hero kapak: blog detayda en üstte tam genişlik */
.blog-hero-cover {
    position: relative;
    width: 100%;
    min-height: 420px;
    max-height: 65vh;
    overflow: hidden;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-end;
}

.blog-hero-image-wrap {
    position: absolute;
    inset: 0;
}

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 40%, transparent 70%);
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 0 2.5rem;
}

.blog-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-hero-title {
    font-family: var(--font-family-heading);
    font-weight: var(--heading-font-weight);
    letter-spacing: var(--heading-letter-spacing);
    font-size: 2.5rem;
    line-height: 1.2;
    color: #fff;
    text-transform: none;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-hero-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
}

.blog-hero-date svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.post-title-main {
    font-size: 2.75rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.post-meta .post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 1px;
}

.post-featured-image-wrapper {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-featured-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-content-main {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.post-content-main h2,
.post-content-main h3,
.post-content-main h4 {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 2px;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.post-content-main h2 {
    font-size: 1.75rem;
}

.post-content-main h3 {
    font-size: 1.5rem;
}

.post-content-main h4 {
    font-size: 1.25rem;
}

.post-content-main p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.post-content-main img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-content-main ul,
.post-content-main ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content-main li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.post-content-main a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.post-content-main a:hover {
    color: var(--text-dark);
}

.post-content-main blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

/* Single Page (sayfa/proje-1 vb.) */
.single-page {
    padding: 5rem 0;
    min-height: 60vh;
}

.page-article {
    max-width: 900px;
    margin: 0 auto;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.page-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
    color: var(--text-dark);
}

.page-breadcrumb-sep {
    color: var(--text-light);
    opacity: 0.7;
}

.page-breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

.single-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.single-page .page-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: var(--heading-font-weight);
    text-transform: none;
    letter-spacing: var(--heading-letter-spacing);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.page-featured-image-wrapper {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-featured-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-content-empty {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 3rem 1rem;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    font-family: var(--font-family-heading);
    font-weight: var(--heading-font-weight);
    text-transform: none;
    letter-spacing: var(--heading-letter-spacing);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-content h2 { font-size: 1.75rem; }
.page-content h3 { font-size: 1.5rem; }
.page-content h4 { font-size: 1.25rem; }

.page-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.page-content a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.page-content a:hover {
    color: var(--text-dark);
}

.page-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

/* Related Posts Section */
.related-posts-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.section-title-related {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: var(--heading-font-weight);
    text-transform: none;
    letter-spacing: var(--heading-letter-spacing);
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.posts-grid-related {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.post-card-related {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.post-card-related:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.post-link-related {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-image-wrapper-related {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: var(--secondary-color);
}

.post-image-related,
.post-placeholder-related {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-placeholder-related {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
}

.post-card-related:hover .post-image-related {
    transform: scale(1.1);
}

.post-content-related {
    padding: 1.5rem;
}

.post-title-related {
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-date-related {
    font-size: 0.75rem;
    color: var(--text-lighter);
    text-transform: none;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .blog-detail-page--no-hero {
        padding-top: 3rem;
    }
    .blog-hero-cover {
        min-height: 320px;
        max-height: 55vh;
        margin-bottom: 2rem;
    }
    .blog-hero-inner {
        padding: 0 20px;
    }
    .blog-hero-content {
        padding: 2rem 0 1.75rem;
    }
    .blog-hero-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    .blog-hero-date {
        font-size: 0.875rem;
    }
    .post-title-main {
        font-size: 2rem;
    }
    
    .post-content-main {
        font-size: 1rem;
    }
    
    .posts-grid-related {
        grid-template-columns: 1fr;
    }

    .single-page {
        padding: 3rem 0;
    }

    .single-page .page-title {
        font-size: 1.75rem;
    }

    .page-content {
        font-size: 1rem;
    }
}

/* ============================================
   CATALOG PAGE - Saloni Style
   ============================================ */

.catalog-page {
    padding: 5rem 0;
    min-height: 60vh;
}

.catalog-page .page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.catalog-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 3px;
    color: var(--text-dark);
}

.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.catalog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.catalog-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 2.5rem;
    text-align: center;
}

.catalog-icon {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    display: flex;
    justify-content: center;
}

.catalog-info h3 {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.catalog-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 1.5px;
    font-size: 12px;
    transition: var(--transition);
}

.catalog-card:hover .download-btn {
    background: var(--text-dark);
    color: var(--white);
}

/* ============================================
   HOMEPAGE - Modern Design
   ============================================ */

.home-page {
    width: 100%;
    overflow-x: hidden;
}

/* Video widget - Saloni.furniture style (edge-to-edge, autoplay, muted) */
.page-widget-edge {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
}
.widget-video-saloni .widget-video-container {
    width: 100%;
}

/* Homepage Slider */
.home-slider-section {
    background: #efefef;
}

.home-slider-wrapper {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
}

.home-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.home-slide.active {
    opacity: 1;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 5;
}

.home-slider-btn.prev {
    left: 24px;
}

.home-slider-btn.next {
    right: 24px;
}

.home-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 6;
}

.home-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    cursor: pointer;
}

.home-slider-dot.active {
    background: rgba(0, 0, 0, 0.5);
}

/* Products Showcase */
.home-products-showcase {
    padding: 0;
    background: var(--white);
}

.home-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.home-product-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.home-product-link {
    display: block;
    position: relative;
}

.home-product-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.home-product-card.is-center img {
    height: 360px;
}

.home-product-card.is-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.home-product-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    z-index: 2;
    border: none;
    padding: 0;
    cursor: pointer;
    appearance: none;
}

.home-product-nav.prev {
    left: 16px;
}

.home-product-nav.next {
    right: 16px;
}

.home-products-cta {
    text-align: center;
    margin-top: 1.75rem;
}

.home-products-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    background: #e6e6e6;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
}

.home-products-button:hover {
    background: #d9d9d9;
}

/* Banner */
.home-bottom-images {
    display: grid;
    gap: 1.5rem;
    background: #f5f5f5;
    padding: 2.5rem 0;
}

.home-bottom-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .home-slider-wrapper {
        height: 460px;
    }

    .home-products-grid {
        grid-template-columns: 1fr;
    }

    .home-product-card img,
    .home-product-card.is-center img {
        height: auto;
    }
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-dot:hover {
    transform: scale(1.3);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: var(--heading-font-weight);
    text-transform: none;
    letter-spacing: var(--heading-letter-spacing);
    color: var(--text-dark);
    margin: 0;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 1px;
    transition: var(--transition);
}

.section-link:hover {
    color: var(--text-light);
    gap: 0.75rem;
}

.section-link svg {
    transition: var(--transition);
}

.section-link:hover svg {
    transform: translateX(4px);
}

/* Featured Products Section (homepage only) */
.featured-products-section {
    padding: 5rem 0;
    background: var(--white);
}

.featured-products-section .product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.featured-products-section .product-image,
.featured-products-section .product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-products-section .product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    background: var(--secondary-color);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.product-view-btn {
    color: var(--white);
    text-transform: none;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--white);
    transition: var(--transition);
}

.product-overlay:hover .product-view-btn {
    background: var(--white);
    color: var(--text-dark);
}

.product-name {
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Featured Categories Section */
.featured-categories-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--secondary-color);
}

.category-image,
.category-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    background: var(--secondary-color);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-name {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1.5px;
}

/* Campaigns Section */
.campaigns-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Campaigns Page (liste sayfası – koleksiyon/projeler ile aynı yapı) */
.campaigns-page {
    padding: 5rem 0;
    min-height: 60vh;
}

.campaigns-page .page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.campaigns-page .page-header h1 {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: var(--heading-font-weight);
    text-transform: none;
    letter-spacing: var(--heading-letter-spacing);
    color: var(--text-dark);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.campaign-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.campaign-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.campaign-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--secondary-color);
    position: relative;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.campaign-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--text-light);
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 2px;
}

.campaign-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.campaign-content h2 {
    font-family: var(--font-family-heading);
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.campaign-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.campaign-dates {
    font-size: 0.8rem;
    color: var(--text-lighter);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.campaign-title {
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.campaign-description {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Latest Posts Section */
.latest-posts-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.post-card {
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: var(--secondary-color);
}

.post-image,
.post-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    background: var(--secondary-color);
}

.post-card:hover .post-image {
    transform: scale(1.1);
}

.post-content {
    padding: 2rem;
}

.post-title {
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-excerpt {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-read-more {
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.post-card:hover .post-read-more {
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slider-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .featured-products-section .products-grid,
    .categories-grid,
    .campaigns-grid,
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .featured-products-section,
    .featured-categories-section,
    .campaigns-section,
    .campaigns-page,
    .latest-posts-section {
        padding: 3rem 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .featured-products-section .products-grid,
    .categories-grid,
    .campaigns-grid,
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON (tüm sayfalarda sabit, scroll ile kaybolmaz)
   Numara: Admin > Ayarlar > Genel > WhatsApp numarası
   ============================================ */
.whatsapp-float {
    position: fixed !important;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    z-index: 99999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
    flex-shrink: 0;
}

/* ============================================
   UTILITIES
   ============================================ */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    font-size: 14px;
    border-left: 3px solid #155724;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    font-size: 14px;
    border-left: 3px solid #721c24;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
