/* ============================================================
   TAHA GELİNLİK — GLOBAL DESIGN SYSTEM
   ============================================================ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #85554e;
    --primary-light: #a0726b;
    --primary-dark: #6a413b;
    --cream: #fffbf8;
    --cream-dark: #f5ede8;
    --text: #1a1a1a;
    --text-muted: #7a7a7a;
    --text-light: #b0b0b0;
    --border: #e8dbd8;
    --white: #fff;
    --black: #0a0a0a;
    --shadow-sm: 0 2px 12px rgba(133, 85, 78, .08);
    --shadow-md: 0 8px 32px rgba(133, 85, 78, .14);
    --shadow-lg: 0 20px 60px rgba(133, 85, 78, .18);
    --radius: 4px;
    --radius-lg: 12px;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--black);
    color: #ccc;
    font-size: 12px;
    letter-spacing: .04em;
    z-index: 200;
    position: relative;
}

.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.top-bar a {
    color: #ccc;
    transition: var(--transition);
}

.top-bar a:hover {
    color: #fff;
}

/* ── NAVBAR ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 251, 248, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-logo img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.chevron {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 50;
}

.dropdown-item {
    display: block;
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.dropdown-item:hover {
    color: var(--primary);
    background: var(--cream);
    padding-left: 26px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text);
    transition: var(--transition);
}

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

.btn-icon:hover {
    background: var(--cream-dark);
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Search Bar */
.search-bar {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.search-bar.open {
    display: block;
}

.search-bar-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-bar-inner input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: none;
}

.search-results {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px 12px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover {
    color: var(--primary);
}

.search-result-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius);
}

.search-result-name {
    font-weight: 500;
    font-size: 14px;
}

.search-result-num {
    font-size: 12px;
    color: var(--text-muted);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--white);
    padding-bottom: 16px;
}

.mobile-menu.open {
    display: block;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--primary);
    background: var(--cream);
}

.mobile-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform .3s;
}

.mobile-accordion-btn.open svg {
    transform: rotate(180deg);
}

.mobile-accordion-menu {
    display: none;
    background: var(--cream);
}

.mobile-accordion-menu.open {
    display: block;
}

.mobile-sub-link {
    display: block;
    padding: 11px 24px 11px 36px;
    font-size: 13.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-sub-link:hover {
    color: var(--primary);
}

/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #2a1210 0%, #4a2520 50%, #1a0a08 100%);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(10, 10, 10, .6) 0%,
            rgba(60, 30, 25, .5) 50%,
            rgba(10, 10, 10, .5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 700px;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: #e8b4ae;
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(133, 85, 78, .35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: transparent;
    color: var(--white);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid rgba(255, 255, 255, .5);
    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .8);
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .6), transparent);
    margin: 0 auto;
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: .3;
        transform: scaleY(.5);
    }
}

/* ── MINI FEATURES ── */
.mini-features {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.feature-card {
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    border-right: 1px solid var(--border);
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    background: var(--cream);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card:hover .feature-icon {
    background: rgba(133, 85, 78, .12);
    transform: scale(1.05);
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── SECTION COMMON ── */
.section-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 40px;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    width: 100%;
}

.section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--text);
}

.section-link {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .04em;
    transition: var(--transition);
}

.section-link:hover {
    color: var(--primary-dark);
    transform: translateX(2px);
}

/* ── ANA KATEGORİLER ── */
.categories-section {
    padding: 80px 0;
    background: var(--cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.category-img-wrap {
    position: absolute;
    inset: 0;
}

.category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 5, 4, .75) 0%, transparent 55%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 1;
    color: var(--white);
}

.category-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-cta {
    font-size: 11px;
    letter-spacing: .14em;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.category-cta::after {
    content: '→';
    transition: transform .3s;
}

.category-card:hover .category-cta::after {
    transform: translateX(4px);
}

/* ── FEATURED / SLIDER ── */
.featured-section {
    padding: 80px 0;
    background: var(--cream);
}

.featured-alt {
    background: var(--white);
}

.slider-wrapper {
    position: relative;
}

.products-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.slider-prev {
    left: -22px;
}

.slider-next {
    right: -22px;
}

/* ── PRODUCT CARD ── */
.product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

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

.product-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream-dark);
}

.product-img-primary,
.product-img-secondary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .5s ease;
}

.product-img-secondary {
    opacity: 0;
}

.product-card:hover .product-img-primary {
    opacity: 0;
}

.product-card:hover .product-img-secondary {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 1;
}

.product-info {
    padding: 16px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-num {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ── PRODUCT LISTING PAGE ── */
.listing-header {
    padding: 60px 0 32px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.listing-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.listing-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
}

.listing-count {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

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

.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(133, 85, 78, .06);
}

/* Kesim filter chips */
.kesim-filters {
    padding: 20px 0 28px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.kesim-chip {
    padding: 6px 16px;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    font-family: var(--font);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.kesim-chip:hover,
.kesim-chip.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(133, 85, 78, .06);
}

.listing-section {
    padding: 48px 0 80px;
}

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

.products-grid .product-card {
    flex: none;
    width: auto;
    min-width: auto;
}

/* ── PRODUCT DETAIL ── */
.product-detail-section {
    padding: 60px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--cream-dark);
    margin-bottom: 12px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    flex: 0 0 70px;
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: var(--transition);
}

.gallery-thumb.active {
    border-color: var(--primary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {}

.detail-eyebrow {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.detail-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.detail-num {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.detail-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.detail-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sizes-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.size-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.size-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.size-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.size-btn.out-of-stock {
    opacity: .35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
}

.btn-whatsapp:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

/* ── GALERİ ── */
.gallery-page-section {
    padding: 60px 0 80px;
}

.masonry-grid {
    columns: 4;
    column-gap: 16px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.masonry-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .2);
}

/* ── FOOTER ── */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    transition: var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 20px;
}

.footer-links li+li {
    margin-top: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .4);
}

.payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .04em;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 80;
    transition: var(--transition);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
}

/* ── PAGE HERO (listing pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .8);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, .4);
}

/* ── INFO PAGES (contact, kvkk etc.) ── */
.info-section {
    padding: 72px 0;
}

.info-content-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 12px;
    color: var(--primary);
}

.info-content h2:first-child {
    margin-top: 0;
}

.info-content p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.info-content ul {
    margin-bottom: 14px;
    padding-left: 20px;
}

.info-content ul li {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.8;
    list-style: disc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(133, 85, 78, .1);
}

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

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
}

.contact-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

/* ── EMPTY STATE ── */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-state svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    opacity: .3;
}

.empty-state p {
    font-size: 15px;
}

/* ── LOADER ── */
.skeleton {
    animation: shimmer 1.5s infinite;
    background: linear-gradient(90deg, var(--cream-dark) 25%, var(--border) 50%, var(--cream-dark) 75%);
    background-size: 200% 100%;
    border-radius: var(--radius-lg);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .masonry-grid {
        columns: 3;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

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

    .hamburger {
        display: flex;
    }

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

    .category-card {
        aspect-ratio: 16/7;
    }

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

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery {
        position: static;
    }

    .masonry-grid {
        columns: 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .navbar-inner {
        padding: 0 16px;
        height: 62px;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 52px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        max-width: 280px;
    }

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

    .feature-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .categories-section {
        padding: 48px 0;
    }

    .featured-section {
        padding: 48px 0;
    }

    .product-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 160px;
    }

    .slider-prev {
        left: 0;
    }

    .slider-next {
        right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .masonry-grid {
        columns: 2;
        column-gap: 10px;
    }

    .masonry-item {
        margin-bottom: 10px;
    }

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

    .top-bar-inner {
        gap: 12px;
        font-size: 11px;
    }

    .listing-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   TAHA GELİNLİK — POPUP MODAL STYLES
   ============================================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 5, 4, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 20px;
}

.popup-overlay.open {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: var(--cream);
    width: 100%;
    max-width: 820px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 24px 70px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    position: relative;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.popup-overlay.open .popup-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 10;
}

.popup-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.popup-close svg {
    width: 16px;
    height: 16px;
}

.popup-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.popup-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 16px;
}

.popup-title em {
    font-style: normal;
    color: var(--primary-light);
}

.popup-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-whatsapp-popup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-popup svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.popup-subtext {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-subtext svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.popup-image-side {
    background-image: url('../images/popup-appointment.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 380px;
}

.popup-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 251, 248, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-modal {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .popup-image-side {
        display: none;
    }
    .popup-content {
        padding: 40px 24px;
    }
    .popup-close {
        background: var(--cream-dark);
        top: 12px;
        right: 12px;
    }
}

/* ============================================================
   TAHA GELİNLİK — ADMIN & LOGIN STYLES
   ============================================================ */

/* ── LOGIN PAGE ── */
.login-page-body {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 16px 48px rgba(133, 85, 78, 0.1);
    width: 100%;
    max-width: 420px;
    padding: 48px 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.login-logo {
    max-height: 48px;
    width: auto;
    margin: 0 auto 24px;
    display: block;
    object-fit: contain;
}

.login-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--text);
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 13px;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ── ADMIN DASHBOARD ── */
.admin-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--cream);
}

.admin-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.admin-header-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-header-logo {
    height: 36px;
    width: auto;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-user-info {
    font-size: 13px;
    color: var(--text-muted);
}

.admin-user-info strong {
    color: var(--text);
}

.btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #c81e1e;
    padding: 8px 16px;
    border: 1px solid #f8b4b4;
    border-radius: var(--radius);
    background: transparent;
    transition: var(--transition);
}

.btn-logout:hover {
    background: #fdf2f2;
    color: #9b1c1c;
}

.admin-main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    padding: 0 24px;
}

.admin-tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
}

.admin-tab-btn {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.admin-tab-btn:hover {
    color: var(--primary);
}

.admin-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
    animation: adminFadeIn 0.35s ease;
}

@keyframes adminFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 36px;
    margin-bottom: 28px;
}

.admin-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    border-left: 3.5px solid var(--primary);
    padding-left: 12px;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* ── FORMS ── */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream);
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    color: var(--text);
}

.form-input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(133, 85, 78, 0.1);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2385554e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.btn-login {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: var(--transition);
    margin-top: 12px;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(133, 85, 78, 0.25);
}

.btn-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-save:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(133, 85, 78, 0.3);
}

.admin-submit-bar {
    display: flex;
    justify-content: flex-end;
    margin-top: 36px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

/* Alerts */
.alert-error {
    background: #fdf2f2;
    border: 1px solid #f8b4b4;
    color: #9b1c1c;
    padding: 14px;
    border-radius: var(--radius);
    font-size: 13.5px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background: #def7ec;
    border: 1px solid #84e1bc;
    color: #03543f;
    padding: 14px;
    border-radius: var(--radius);
    font-size: 13.5px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/* ── LOGS TABLE ── */
.admin-table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13.5px;
}

.admin-table th {
    background: var(--cream-dark);
    padding: 14px 20px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:nth-child(even) td {
    background: rgba(255, 251, 248, 0.4);
}

.admin-badge {
    display: inline-flex;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-badge-success {
    background: #def7ec;
    color: #03543f;
}

.admin-badge-danger {
    background: #fdf2f2;
    color: #9b1c1c;
}

.admin-badge-info {
    background: #e1effe;
    color: #1e429f;
}

@media (max-width: 992px) {
    .admin-grid-2 {
        grid-template-columns: 1fr;
    }
    .admin-header {
        padding: 0 20px;
    }
    .admin-main {
        margin: 24px auto;
    }
}