/* =============================================
   Sineklik Store WordPress Theme — Front-end Styles
   ZARA-Style Storefront + Single Product + Archive
   ============================================= */

/* === DESIGN TOKENS === */
:root {
    --color-black: #000000;
    --color-near-black: #1a1a1a;
    --color-dark: #2a2a2a;
    --color-gray-700: #3d3d3d;
    --color-gray-600: #555555;
    --color-gray-500: #777777;
    --color-gray-400: #999999;
    --color-gray-300: #bbbbbb;
    --color-gray-200: #dddddd;
    --color-gray-100: #eeeeee;
    --color-gray-50: #f5f5f5;
    --color-white: #ffffff;
    --color-accent: #c9a84c;
    --color-sale: #cc0000;
    --color-whatsapp: #25d366;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --header-height: 56px;
    --announcement-height: 36px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-near-black);
    background: var(--color-white);
    overflow-x: hidden;
    -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: inherit; }
input, textarea, select { font-family: inherit; }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
    height: var(--announcement-height);
    background: var(--color-near-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
    transition: transform 0.3s ease;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.header__left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* === INLINE HEADER NAV (centered) === */
.header__nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

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

.header__nav-list li a {
    display: block;
    padding: 6px 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-gray-600);
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.header__nav-list li a:hover {
    color: var(--color-black);
}

.header__nav-list li.current-menu-item a,
.header__nav-list li.current_page_item a {
    color: var(--color-black);
    font-weight: 600;
}

/* Header Dropdown */
.menu-item--has-dropdown {
    position: relative;
}

.menu-item--has-dropdown > a {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

.menu-item--has-dropdown > a svg {
    transition: transform 0.25s ease;
}

.menu-item--has-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 100;
}

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

.header__dropdown-inner {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    min-width: 240px;
    overflow: hidden;
}

.header__dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    text-decoration: none;
    transition: background 0.15s ease;
    border-bottom: 1px solid var(--color-gray-50);
}

.header__dropdown-item:last-of-type {
    border-bottom: none;
}

.header__dropdown-item:hover {
    background: var(--color-gray-50);
}

.header__dropdown-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-near-black);
    letter-spacing: 0.01em;
}

.header__dropdown-count {
    font-size: 0.7rem;
    color: var(--color-gray-400);
    font-weight: 400;
}

.header__dropdown-footer {
    padding: 10px 18px;
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-100);
}

.header__dropdown-all {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-near-black);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
}

.header__dropdown-all:hover {
    color: var(--color-accent);
}

/* Mobile menu toggle — hidden on desktop */
.header__mobile-toggle {
    display: none;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-near-black);
    padding: 6px;
    z-index: 10;
}

.header__icon-btn {
    color: var(--color-near-black);
    padding: 6px;
    transition: opacity var(--transition-fast);
    position: relative;
}

.header__icon-btn:hover {
    opacity: 0.6;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo-default {
    max-height: 40px;
    width: auto;
    display: block;
}

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

.header__logo-img img {
    max-height: 36px;
    width: auto;
}

.header__cart-count {
    position: absolute;
    top: 0;
    right: -2px;
    width: 16px;
    height: 16px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 0.6rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === MEGA MENU === */
.mega-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mega-menu__overlay.active {
    opacity: 1;
    visibility: visible;
}

.mega-menu__panel {
    position: fixed;
    top: 0;
    left: -380px;
    width: 380px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-white);
    z-index: 201;
    transition: left var(--transition-slow);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mega-menu__panel.open {
    left: 0;
}

.mega-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--color-gray-100);
}

.mega-menu__title {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.mega-menu__close {
    color: var(--color-near-black);
    padding: 4px;
}

/* WordPress wp_nav_menu output */
.mega-menu__list {
    padding: 12px 0;
    flex: 1;
    list-style: none;
    margin: 0;
}

.mega-menu__list li {
    padding: 0;
    list-style: none;
}

.mega-menu__list li a,
.mega-menu__link {
    display: block;
    padding: 14px 28px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--color-gray-600);
    transition: all var(--transition-fast);
}

.mega-menu__list li a:hover,
.mega-menu__link:hover {
    color: var(--color-black);
    padding-left: 34px;
}

.mega-menu__list li.current-menu-item a,
.mega-menu__link--highlight {
    color: var(--color-black);
    font-weight: 600;
}

.mega-menu__divider {
    height: 1px;
    background: var(--color-gray-100);
    margin: 8px 28px;
}

/* === SEARCH OVERLAY === */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    z-index: 150;
    transform: translateY(-100%);
    transition: transform var(--transition-slow);
    padding: 0 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-overlay.open {
    transform: translateY(0);
}

.search-overlay__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
    max-width: 700px;
    margin: 0 auto;
}

.search-overlay__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--color-near-black);
    background: transparent;
}

.search-overlay__input::placeholder {
    color: var(--color-gray-400);
}

.search-overlay__close {
    color: var(--color-near-black);
    padding: 4px;
}

.search-overlay__suggestions {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 24px;
}

.search-overlay__label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: 12px;
}

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

.search-tag {
    padding: 6px 16px;
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-gray-600);
    transition: all var(--transition-fast);
}

.search-tag:hover {
    background: var(--color-near-black);
    color: var(--color-white);
    border-color: var(--color-near-black);
}

/* === HERO VITRIN === */
.hero-vitrin {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-vitrin__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-vitrin__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-vitrin__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-vitrin__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px 48px;
    width: 100%;
}

/* Sol: Metin */
.hero-vitrin__text {
    color: var(--color-white);
}

.hero-vitrin__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 4px;
}

.hero-vitrin__title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-vitrin__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 440px;
    font-weight: 300;
}

.hero-vitrin__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-vitrin__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--color-white);
    color: var(--color-near-black);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.hero-vitrin__cta:hover {
    background: var(--color-accent);
    color: var(--color-black);
}

.hero-vitrin__cta--outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-vitrin__cta--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    color: var(--color-white);
}

/* Güven İkonları */
.hero-vitrin__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-vitrin__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.7;
}

.hero-vitrin__trust-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

/* Sağ: Ürün Showcase */
.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 460px;
    align-self: center;
    justify-self: end;
}

/* --- SHOWCASE SLIDE --- */
.hero-showcase__slide {
    display: none !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    overflow: hidden;
    animation: showcaseFadeIn 0.5s ease;
}

.hero-showcase__slide--active { display: block !important; }

@keyframes showcaseFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

/* Image */
.hero-showcase__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-showcase__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s ease;
}

.hero-showcase__slide:hover .hero-showcase__image img {
    transform: scale(1.05);
}

.hero-showcase__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
}

.hero-showcase__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--color-accent), #d4b85c);
    color: #000;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}

/* Info */
.hero-showcase__info {
    padding: 16px 18px 18px;
    color: #fff;
}

.hero-showcase__cat {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.5;
    font-weight: 500;
    margin-bottom: 4px;
}

.hero-showcase__name {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
}

.hero-showcase__price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.hero-showcase__price--current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.hero-showcase__price--old {
    text-decoration: line-through;
    opacity: 0.45;
    font-weight: 400;
    font-size: 0.82rem;
    color: #fff;
}

/* Buttons */
.hero-showcase__buttons {
    display: flex;
    gap: 8px;
}

.hero-showcase__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.hero-showcase__btn--primary {
    background: var(--color-accent);
    color: #000;
}

.hero-showcase__btn--primary:hover {
    background: #d4b85c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}

.hero-showcase__btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-showcase__btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Navigation Dots */
.hero-showcase__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.hero-showcase__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-showcase__dot--active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

.hero-showcase__dot:hover {
    background: rgba(255,255,255,0.5);
}


/* === CATEGORY CHIP BAR === */
.category-chips {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
    padding: 0 24px;
}

.category-chips__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.category-chips__scroll {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 14px 0;
}

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

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-gray-600);
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
}

.category-chip:hover {
    color: var(--color-near-black);
    border-color: var(--color-near-black);
    background: var(--color-gray-50);
}

.category-chip--all {
    background: var(--color-near-black);
    color: var(--color-white);
    border-color: var(--color-near-black);
    font-weight: 600;
}

.category-chip--all:hover {
    background: #333;
    color: var(--color-white);
}

.category-chips__info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.category-chips__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #2e7d32;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.category-chips__badge svg {
    color: #2e7d32;
}

/* === CATEGORIES === */
.categories {
    padding: 3px;
}

.categories__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.category-block {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: block;
    cursor: pointer;
}

.category-block--wide {
    grid-column: 1 / -1;
    min-height: 550px;
}

.category-block__img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.category-block:hover .category-block__img {
    transform: scale(1.04);
}

.category-block__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

.category-block__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--color-white);
}

.category-block__badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--color-accent);
    color: var(--color-black);
    padding: 4px 12px;
    margin-bottom: 12px;
}

.category-block__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.category-block__cta {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.category-block:hover .category-block__cta {
    opacity: 1;
    transform: translateY(0);
}

/* === PRODUCTS === */
.products {
    padding: 60px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.products__title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.products__filters {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.filter-btn {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    padding: 8px 18px;
    color: var(--color-gray-500);
    border-radius: 20px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover {
    color: var(--color-near-black);
}

.filter-btn.active {
    color: var(--color-near-black);
    border-color: var(--color-near-black);
    font-weight: 500;
}

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

.product {
    position: relative;
}

.product__link {
    display: block;
}

.product__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.product__image {
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.product__image--photo {
    background: var(--color-gray-50);
}

.product__image--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product:hover .product__image {
    transform: scale(1.03);
}

.product__icon {
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.product:hover .product__icon {
    opacity: 0.7;
}

.product__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--color-white);
    color: var(--color-near-black);
    z-index: 2;
}

.product__badge--sale {
    background: var(--color-sale);
    color: var(--color-white);
}

.product__badge--premium {
    background: var(--color-accent);
    color: var(--color-black);
}

.product__badge--new {
    background: #1565c0;
    color: var(--color-white);
}

/* Bölüm Başlıkları (Çok Satanlar, Yeni Ürünler) */
.products__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-gray-100);
}

.products__section-header:first-of-type {
    margin-top: 0;
}

.products__section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-near-black);
    letter-spacing: 0.01em;
}

.products__section-sub {
    font-size: 0.78rem;
    color: var(--color-gray-500);
    margin-top: 2px;
    font-weight: 400;
}

.products__section-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-near-black);
    text-decoration: none;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.products__section-link:hover {
    color: var(--color-accent);
}

.product__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 8px;
    color: var(--color-gray-600);
    opacity: 0;
    transform: translateY(-4px);
    transition: all var(--transition-base);
}

.product:hover .product__wishlist {
    opacity: 1;
    transform: translateY(0);
}

.product__wishlist:hover {
    color: var(--color-sale);
}

.product__info {
    padding: 12px 4px 4px;
}

.product__name {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--color-near-black);
    margin-bottom: 4px;
    line-height: 1.4;
}

.product__price {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-near-black);
}

.product__price--old {
    text-decoration: line-through;
    color: var(--color-gray-400);
    font-weight: 400;
    margin-right: 6px;
    font-size: 0.78rem;
}

.product__price--current {
    color: var(--color-sale);
    font-weight: 600;
}

.product__price--has-sale {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Stok bilgisi */
.product__stock {
    display: block;
    font-size: 0.7rem;
    color: #2e7d32;
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* E-ticaret hover overlay */
.product__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    z-index: 3;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.product:hover .product__actions {
    opacity: 1;
    transform: translateY(0);
}

.product__action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.product__action-btn--cart {
    background: var(--color-near-black);
    color: var(--color-white);
}

.product__action-btn--cart:hover {
    background: #333;
}

.product__action-btn--view {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-near-black);
    backdrop-filter: blur(8px);
}

.product__action-btn--view:hover {
    background: var(--color-white);
}

.product__action-btn svg {
    flex-shrink: 0;
}

.products__more {
    text-align: center;
    margin-top: 48px;
}

.products__load-more {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-near-black);
    padding: 14px 48px;
    border: 1px solid var(--color-near-black);
    transition: all var(--transition-fast);
    display: inline-block;
    text-decoration: none;
}

.products__load-more:hover {
    background: var(--color-near-black);
    color: var(--color-white);
}

/* === SINGLE PRODUCT (E-Ticaret) === */
.sp-breadcrumb { max-width:1400px; margin:0 auto; padding:14px 24px; }
.sp-breadcrumb__inner { display:flex; align-items:center; gap:0; flex-wrap:wrap; }
.sp-breadcrumb__inner a { color:#999; font-size:0.75rem; letter-spacing:0.04em; text-decoration:none; }
.sp-breadcrumb__inner a:hover { color:#1a1a1a; }
.sp-breadcrumb__sep { color:#ccc; margin:0 8px; font-size:0.75rem; }
.sp-breadcrumb__current { color:#1a1a1a; font-size:0.75rem; font-weight:500; }

.sp-product { max-width:1400px; margin:0 auto; padding:8px 24px 48px; }
.sp-product__grid { display:grid; grid-template-columns:1.1fr 1fr; gap:48px; align-items:start; }

/* Galeri */
.sp-gallery { position:relative; }
.sp-gallery__badge { position:absolute; top:12px; left:12px; z-index:2; font-size:0.65rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; padding:5px 12px; background:#fff; color:#1a1a1a; }
.sp-gallery__discount { position:absolute; top:12px; right:12px; z-index:2; background:#c62828; color:#fff; font-size:0.72rem; font-weight:700; padding:4px 10px; border-radius:4px; }
.sp-gallery__main { background:#f8f8f8; border-radius:8px; overflow:hidden; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; }
.sp-gallery__img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; }
.sp-gallery__main:hover .sp-gallery__img { transform:scale(1.04); }
.sp-gallery__placeholder { display:flex; align-items:center; justify-content:center; width:100%; height:100%; background:linear-gradient(145deg,#e8e4df,#d4cec6); }
.sp-gallery__thumbs { display:flex; gap:8px; margin-top:10px; }
.sp-gallery__thumb { width:72px; height:72px; border-radius:6px; overflow:hidden; cursor:pointer; border:2px solid transparent; transition:border-color 0.2s; flex-shrink:0; }
.sp-gallery__thumb img { width:100%; height:100%; object-fit:cover; }
.sp-gallery__thumb:hover { border-color:#999; }
.sp-gallery__thumb--active { border-color:#1a1a1a; }

/* Ürün Bilgi */
.sp-info { padding-top:4px; }
.sp-info__category { display:inline-block; font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:#999; text-decoration:none; margin-bottom:8px; transition:color 0.2s; }
.sp-info__category:hover { color:#1a1a1a; }
.sp-info__title { font-size:1.5rem; font-weight:600; letter-spacing:0.01em; margin-bottom:10px; line-height:1.3; color:#1a1a1a; }
.sp-info__short-desc { font-size:0.88rem; color:#666; line-height:1.6; margin-bottom:20px; }

/* Fiyat */
.sp-info__price-box { margin-bottom:16px; padding:16px 0; border-top:1px solid #eee; border-bottom:1px solid #eee; }
.sp-info__price-row { display:flex; align-items:center; gap:10px; }
.sp-info__price-old { font-size:1rem; text-decoration:line-through; color:#999; }
.sp-info__price-current { font-size:1.6rem; font-weight:700; color:#1a1a1a; }
.sp-info__price-sale { color:#c62828; }
.sp-info__price-save { font-size:0.72rem; font-weight:600; color:#fff; background:#c62828; padding:2px 8px; border-radius:4px; }
.sp-info__tax-note { font-size:0.72rem; color:#999; margin-top:6px; }

/* Stok */
.sp-info__stock { font-size:0.82rem; font-weight:600; margin-bottom:16px; }

/* Seçenekler */
.sp-info__option { display:flex; align-items:center; gap:8px; margin-bottom:10px; font-size:0.85rem; }
.sp-info__option-label { font-weight:600; color:#1a1a1a; }
.sp-info__option-value { color:#555; }

/* Adet + Sepete Ekle */
.sp-info__cart-row { display:flex; gap:12px; margin-bottom:14px; align-items:stretch; }
.sp-info__qty { display:flex; align-items:center; border:1px solid #ddd; border-radius:6px; overflow:hidden; }
.sp-info__qty-btn { width:38px; height:44px; border:none; background:#f5f5f5; font-size:1.1rem; cursor:pointer; color:#1a1a1a; transition:background 0.15s; }
.sp-info__qty-btn:hover { background:#e0e0e0; }
.sp-info__qty-input { width:48px; text-align:center; border:none; border-left:1px solid #ddd; border-right:1px solid #ddd; font-size:0.9rem; font-weight:600; -moz-appearance:textfield; }
.sp-info__qty-input::-webkit-inner-spin-button { -webkit-appearance:none; }
.sp-info__add-cart { flex:1; display:flex; align-items:center; justify-content:center; gap:8px; background:#1a1a1a; color:#fff; border:none; border-radius:6px; font-size:0.85rem; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; cursor:pointer; transition:background 0.2s; padding:0 24px; }
.sp-info__add-cart:hover { background:#333; }
.sp-info__add-cart:disabled { background:#ccc; cursor:not-allowed; }

/* İletişim butonları */
.sp-info__contact-row { display:flex; gap:8px; margin-bottom:20px; }
.sp-info__contact-btn { display:flex; align-items:center; justify-content:center; gap:6px; padding:10px 20px; font-size:0.78rem; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; text-decoration:none; border-radius:6px; transition:all 0.2s; flex:1; }
.sp-info__contact-btn--phone { background:#f5f5f5; color:#1a1a1a; border:1px solid #ddd; }
.sp-info__contact-btn--phone:hover { background:#eee; }
.sp-info__contact-btn--wa { background:#25d366; color:#fff; }
.sp-info__contact-btn--wa:hover { background:#20bd5a; }

/* Güven rozetleri */
.sp-info__trust { display:grid; grid-template-columns:1fr; gap:10px; padding-top:20px; border-top:1px solid #eee; }
.sp-info__trust-item { display:flex; align-items:center; gap:10px; font-size:0.8rem; }
.sp-info__trust-item svg { flex-shrink:0; }
.sp-info__trust-item strong { display:block; color:#1a1a1a; font-size:0.78rem; }
.sp-info__trust-item span { display:block; color:#999; font-size:0.7rem; }

/* Tab Bölümü */
.sp-tabs-section { background:#fafafa; border-top:1px solid #eee; }
.sp-tabs-section__inner { max-width:1400px; margin:0 auto; padding:0 24px; }
.sp-tabs__nav { display:flex; gap:0; border-bottom:2px solid #eee; }
.sp-tabs__btn { padding:16px 24px; font-size:0.82rem; font-weight:500; color:#999; background:none; border:none; border-bottom:2px solid transparent; margin-bottom:-2px; cursor:pointer; transition:all 0.2s; letter-spacing:0.02em; }
.sp-tabs__btn:hover { color:#1a1a1a; }
.sp-tabs__btn--active { color:#1a1a1a; font-weight:600; border-bottom-color:#1a1a1a; }
.sp-tabs__panel { display:none; padding:32px 0 48px; }
.sp-tabs__panel--active { display:block; }
.sp-tabs__content { font-size:0.9rem; line-height:1.8; color:#555; max-width:900px; }
.sp-tabs__content p { margin-bottom:12px; }

/* Spec tablosu */
.sp-specs-table { width:100%; border-collapse:collapse; }
.sp-specs-table tr { border-bottom:1px solid #eee; }
.sp-specs-table th { text-align:left; padding:10px 16px 10px 0; font-size:0.82rem; font-weight:600; color:#1a1a1a; width:160px; }
.sp-specs-table td { padding:10px 0; font-size:0.82rem; color:#555; }

/* Feature listesi */
.sp-features-list { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.sp-features-list li { display:flex; align-items:center; gap:8px; font-size:0.82rem; color:#444; padding:6px 0; }
.sp-features-list li svg { flex-shrink:0; }

/* Kargo kartları */
.sp-shipping-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.sp-shipping-card { background:#fff; border:1px solid #eee; border-radius:8px; padding:24px 20px; text-align:center; }
.sp-shipping-card svg { margin-bottom:12px; }
.sp-shipping-card h4 { font-size:0.88rem; font-weight:600; color:#1a1a1a; margin:0 0 6px; }
.sp-shipping-card p { font-size:0.78rem; color:#888; line-height:1.5; margin:0; }

/* İlgili Ürünler */
.sp-related { border-top:1px solid #eee; padding:48px 0; }
.sp-related__inner { max-width:1400px; margin:0 auto; padding:0 24px; }
.sp-related__header { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.sp-related__title { font-size:1.1rem; font-weight:700; color:#1a1a1a; }
.sp-related__link { font-size:0.78rem; font-weight:600; color:#1a1a1a; text-decoration:none; letter-spacing:0.04em; }
.sp-related__link:hover { color:var(--color-accent); }

/* === PROMO BANNER === */
.promo {
    padding: 3px;
}

.promo__inner {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.promo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.promo__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.promo__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 450px;
    color: var(--color-white);
    padding: 48px 24px;
}

.promo__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.8;
}

.promo__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.promo__text {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 28px;
    max-width: 500px;
}

.promo__cta {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-white);
    padding: 12px 40px;
    border: 1px solid var(--color-white);
    transition: all var(--transition-fast);
    display: inline-block;
    text-decoration: none;
}

.promo__cta:hover {
    background: var(--color-white);
    color: var(--color-near-black);
}

/* === TRUST BAR === */
.trust-bar {
    padding: 48px 24px;
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
}

.trust-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.trust-item svg {
    min-width: 24px;
    color: var(--color-gray-500);
}

.trust-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.trust-item span {
    font-size: 0.72rem;
    color: var(--color-gray-500);
}

/* === CONTACT CTA === */
.contact-cta {
    padding: 80px 24px;
    text-align: center;
    background: var(--color-gray-50);
}

.contact-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta__title {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.contact-cta__text {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    margin-bottom: 28px;
}

.contact-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.contact-cta__btn--primary {
    background: var(--color-near-black);
    color: var(--color-white);
}

.contact-cta__btn--primary:hover {
    background: var(--color-black);
}

.contact-cta__btn--whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
}

.contact-cta__btn--whatsapp:hover {
    opacity: 0.9;
}

/* === FOOTER === */
.footer {
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__col h4,
.footer__accordion-btn {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--color-near-black);
}

.footer__accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 16px;
}

.footer__accordion-btn svg {
    display: none;
}

.footer__accordion-content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__accordion-content li {
    margin-bottom: 10px;
}

.footer__accordion-content li,
.footer__accordion-content a {
    font-size: 0.82rem;
    color: var(--color-gray-500);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer__accordion-content a:hover {
    color: var(--color-near-black);
}

.footer__newsletter p {
    font-size: 0.82rem;
    color: var(--color-gray-500);
    margin-bottom: 16px;
}

.footer__newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--color-near-black);
}

.footer__newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.85rem;
    padding: 8px 0;
    background: transparent;
    color: var(--color-near-black);
}

.footer__newsletter-input::placeholder {
    color: var(--color-gray-400);
}

.footer__newsletter-btn {
    font-size: 1.1rem;
    padding: 8px;
    color: var(--color-near-black);
    transition: opacity var(--transition-fast);
}

.footer__newsletter-btn:hover {
    opacity: 0.6;
}

.footer__bottom {
    border-top: 1px solid var(--color-gray-200);
    padding: 24px;
}

.footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__logo {
    display: inline-block;
}

.footer__logo-img {
    max-height: 32px;
    width: auto;
    display: block;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer__logo:hover .footer__logo-img {
    opacity: 1;
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__socials a {
    color: var(--color-gray-500);
    transition: color var(--transition-fast);
}

.footer__socials a:hover {
    color: var(--color-near-black);
}

.footer__copy {
    font-size: 0.72rem;
    color: var(--color-gray-400);
}

/* === WORDPRESS PAGINATION === */
.page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.page-numbers a,
.page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    font-size: 0.82rem;
    color: var(--color-gray-600);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.page-numbers .current {
    font-weight: 600;
    color: var(--color-near-black);
    border-bottom: 2px solid var(--color-near-black);
}

.page-numbers a:hover {
    color: var(--color-near-black);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.product.hidden {
    display: none;
}

.product.fade-in {
    animation: fadeInUp 0.4s ease forwards;
}

/* === RESPONSIVE — Tablet === */
@media (max-width: 1024px) {
    /* Hero Vitrin — tablet */
    .hero-vitrin {
        min-height: 500px;
    }

    .hero-vitrin__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 60px 32px;
    }

    .hero-vitrin__title {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .hero-vitrin__desc {
        font-size: 0.88rem;
        margin-bottom: 24px;
    }

    .vitrin-card {
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 10px;
    }

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

    .trust-bar__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .single-product__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* === RESPONSIVE — Mobile === */
@media (max-width: 768px) {
    :root {
        --header-height: 50px;
    }

    .header {
        position: relative;
    }

    .header__inner {
        padding: 0 16px;
    }

    .header__left,
    .header__right {
        min-width: auto;
        gap: 8px;
    }

    /* Hide inline nav on mobile */
    .header__nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-gray-100);
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        z-index: 50;
        padding: 8px 0;
    }

    .header__nav.open {
        display: block;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 0;
    }

    .header__nav-list li a {
        padding: 12px 24px;
        font-size: 0.85rem;
        text-align: left;
    }

    /* Show mobile toggle */
    .header__mobile-toggle {
        display: block;
    }

    .header__search-btn {
        display: none;
    }

    .hero {
        height: 65vh;
        min-height: 400px;
    }

    /* Hero Vitrin — mobil */
    .hero-vitrin {
        min-height: auto;
    }

    .hero-vitrin__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 20px 40px;
    }

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

    .hero-vitrin__eyebrow {
        margin-bottom: 12px;
        font-size: 0.65rem;
    }

    .hero-vitrin__title {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .hero-vitrin__desc {
        font-size: 0.85rem;
        margin-bottom: 24px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-vitrin__actions {
        justify-content: center;
        margin-bottom: 24px;
    }

    .hero-vitrin__cta {
        padding: 12px 24px;
        font-size: 0.75rem;
    }

    .hero-vitrin__trust {
        justify-content: center;
        gap: 16px;
    }

    .hero-vitrin__trust-item {
        font-size: 0.7rem;
        gap: 4px;
    }

    .hero-vitrin__trust-item svg {
        width: 14px;
        height: 14px;
    }

    /* Vitrin kartları — mobilde yatay kompakt */
    .hero-vitrin__products {
        gap: 10px;
    }

    .vitrin-card {
        grid-template-columns: 90px 1fr;
        gap: 12px;
        padding: 10px;
    }

    .vitrin-card__cat {
        font-size: 0.6rem;
    }

    .vitrin-card__name {
        font-size: 0.85rem;
    }

    .vitrin-card__price {
        font-size: 0.82rem;
    }

    .vitrin-card__link-text {
        opacity: 0.6;
        transform: translateX(0);
        font-size: 0.68rem;
    }

    .vitrin-card__badge {
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .hero__content {
        padding: 36px 24px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

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

    .category-block {
        min-height: 350px;
    }

    .category-block--wide {
        min-height: 380px;
    }

    .category-block__cta {
        opacity: 1;
        transform: translateY(0);
    }

    .products {
        padding: 40px 16px;
    }

    .products__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .products__filters {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 4px;
        flex-wrap: nowrap;
    }

    .filter-btn {
        white-space: nowrap;
    }

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

    .product__wishlist {
        opacity: 1;
        transform: translateY(0);
    }

    .promo__inner {
        min-height: 350px;
    }

    .promo__content {
        min-height: 350px;
        padding: 36px 20px;
    }

    .trust-bar {
        padding: 32px 16px;
    }

    .trust-bar__inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .contact-cta {
        padding: 48px 16px;
    }

    .contact-cta__btn {
        width: 100%;
        justify-content: center;
    }

    /* Single product mobile */
    .single-product__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .single-product__actions {
        flex-direction: column;
    }

    .single-product__btn {
        width: 100%;
        justify-content: center;
    }

    .single-product__trust {
        flex-direction: column;
        gap: 12px;
    }

    /* Footer accordion on mobile */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 16px;
    }

    .footer__col {
        border-bottom: 1px solid var(--color-gray-200);
        padding: 0;
    }

    .footer__accordion-btn {
        padding: 18px 0;
        margin-bottom: 0;
    }

    .footer__accordion-btn svg {
        display: block;
        transition: transform var(--transition-fast);
    }

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

    .footer__accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
    }

    .footer__accordion-content.open {
        max-height: 200px;
        padding-bottom: 16px;
    }

    .footer__newsletter {
        padding: 24px 0 32px !important;
    }

    .footer__newsletter h4 {
        margin-bottom: 8px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* === Small Mobile === */
@media (max-width: 480px) {
    .announcement-bar {
        font-size: 0.62rem;
        padding: 0 12px;
    }

    /* Hero Vitrin — küçük mobil */
    .hero-vitrin__inner {
        padding: 36px 16px 32px;
        gap: 24px;
    }

    .hero-vitrin__title {
        font-size: 1.5rem;
    }

    .hero-vitrin__desc {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .hero-vitrin__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-vitrin__cta {
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.73rem;
    }

    .hero-vitrin__trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .vitrin-card {
        grid-template-columns: 80px 1fr;
        gap: 10px;
        padding: 8px;
    }

    .vitrin-card__name {
        font-size: 0.8rem;
    }

    .vitrin-card__price {
        font-size: 0.78rem;
    }

    .category-block__content {
        padding: 24px;
    }

    .category-block__title {
        font-size: 1.2rem;
    }
}

/* === CART DRAWER === */
.cart-overlay { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.5); z-index:9998; opacity:0; visibility:hidden; transition:all 0.3s; }
.cart-overlay.open { opacity:1; visibility:visible; }
.cart-drawer { position:fixed; top:0; right:-420px; width:400px; max-width:90vw; height:100vh; background:#fff; z-index:9999; display:flex; flex-direction:column; transition:right 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow:-4px 0 24px rgba(0,0,0,0.15); }
.cart-drawer.open { right:0; }
.cart-drawer__header { display:flex; align-items:center; justify-content:space-between; padding:18px 20px; border-bottom:1px solid #eee; }
.cart-drawer__header h3 { font-size:0.95rem; font-weight:700; margin:0; color:#1a1a1a; }
.cart-drawer__close { background:none; border:none; font-size:1.1rem; cursor:pointer; color:#999; padding:4px; transition:color 0.2s; }
.cart-drawer__close:hover { color:#1a1a1a; }
.cart-drawer__body { flex:1; overflow-y:auto; padding:16px 20px; }
.cart-drawer__footer { padding:16px 20px; border-top:1px solid #eee; background:#fafafa; }
.cart-drawer__total { display:flex; justify-content:space-between; align-items:center; margin-bottom:4px; }
.cart-drawer__total span { font-size:0.85rem; color:#666; }
.cart-drawer__total strong { font-size:1.2rem; font-weight:700; color:#1a1a1a; }
.cart-drawer__note { font-size:0.7rem; color:#999; margin-bottom:12px; }
.cart-drawer__checkout { display:block; width:100%; padding:13px; text-align:center; background:#25d366; color:#fff; font-size:0.85rem; font-weight:700; text-decoration:none; border-radius:6px; letter-spacing:0.04em; transition:background 0.2s; margin-bottom:8px; }
.cart-drawer__checkout:hover { background:#20bd5a; }
.cart-drawer__phone { display:block; width:100%; padding:10px; text-align:center; background:#f5f5f5; color:#1a1a1a; font-size:0.78rem; font-weight:600; text-decoration:none; border-radius:6px; border:1px solid #ddd; transition:background 0.2s; }
.cart-drawer__phone:hover { background:#eee; }

/* Cart Item */
.cart-item { display:flex; align-items:center; gap:12px; padding:12px 0; border-bottom:1px solid #f0f0f0; }
.cart-item:last-child { border-bottom:none; }
.cart-item__img { width:64px; height:64px; border-radius:8px; overflow:hidden; flex-shrink:0; background:#f8f8f8; }
.cart-item__img img { width:100%; height:100%; object-fit:cover; }
.cart-item__info { flex:1; min-width:0; }
.cart-item__name { font-size:0.82rem; font-weight:600; color:#1a1a1a; margin:0 0 2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cart-item__price { font-size:0.78rem; color:#666; margin:0 0 6px; }
.cart-item__qty { display:inline-flex; align-items:center; border:1px solid #ddd; border-radius:4px; overflow:hidden; }
.cart-item__qty button { width:26px; height:26px; border:none; background:#f5f5f5; cursor:pointer; font-size:0.85rem; color:#1a1a1a; transition:background 0.15s; }
.cart-item__qty button:hover { background:#e0e0e0; }
.cart-item__qty span { padding:0 8px; font-size:0.78rem; font-weight:600; }
.cart-item__remove { background:none; border:none; color:#ccc; cursor:pointer; font-size:1rem; padding:4px; transition:color 0.2s; flex-shrink:0; }
.cart-item__remove:hover { color:#c62828; }

/* Toast */
.cart-toast { position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); background:#1a1a1a; color:#fff; padding:12px 24px; border-radius:8px; font-size:0.82rem; font-weight:600; z-index:10000; opacity:0; transition:all 0.3s ease; pointer-events:none; box-shadow:0 4px 16px rgba(0,0,0,0.2); }
.cart-toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* === ARCHIVE PAGE === */
.archive-banner { background:#1a1a1a; padding:40px 24px 36px; }
.archive-banner__inner { max-width:1400px; margin:0 auto; }
.archive-banner__breadcrumb { display:flex; align-items:center; gap:0; margin-bottom:14px; }
.archive-banner__breadcrumb a { color:rgba(255,255,255,0.5); font-size:0.72rem; letter-spacing:0.04em; text-decoration:none; }
.archive-banner__breadcrumb a:hover { color:#fff; }
.archive-banner__breadcrumb span { color:rgba(255,255,255,0.3); margin:0 8px; font-size:0.72rem; }
.archive-banner__breadcrumb strong { color:#fff; font-size:0.72rem; font-weight:500; }
.archive-banner__title { font-size:1.6rem; font-weight:700; color:#fff; margin:0; letter-spacing:0.02em; }
.archive-banner__count { font-size:0.78rem; color:rgba(255,255,255,0.45); margin-top:6px; }

.archive-content { max-width:1400px; margin:0 auto; padding:32px 24px 64px; }
.archive-content__inner { display:grid; grid-template-columns:240px 1fr; gap:32px; }

/* Sidebar */
.archive-sidebar { position:sticky; top:100px; align-self:start; }
.archive-sidebar__section { margin-bottom:28px; }
.archive-sidebar__title { font-size:0.78rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:#1a1a1a; margin:0 0 12px; padding-bottom:8px; border-bottom:2px solid #1a1a1a; }
.archive-sidebar__list { list-style:none; padding:0; margin:0; }
.archive-sidebar__list li { margin-bottom:2px; }
.archive-sidebar__list a { display:flex; align-items:center; justify-content:space-between; padding:8px 10px; font-size:0.82rem; color:#555; text-decoration:none; border-radius:6px; transition:all 0.2s; }
.archive-sidebar__list a:hover { background:#f5f5f5; color:#1a1a1a; }
.archive-sidebar__list a.active { background:#1a1a1a; color:#fff; font-weight:600; }
.archive-sidebar__list a.active .archive-sidebar__count { background:rgba(255,255,255,0.2); color:#fff; }
.archive-sidebar__count { font-size:0.68rem; background:#f0f0f0; padding:2px 8px; border-radius:10px; color:#999; font-weight:500; }
.archive-sidebar__perks { display:flex; flex-direction:column; gap:10px; }
.archive-sidebar__perk { display:flex; align-items:center; gap:8px; font-size:0.78rem; color:#555; }
.archive-sidebar__perk svg { flex-shrink:0; }

/* Top Bar */
.archive-topbar { display:flex; align-items:center; justify-content:space-between; padding:0 0 16px; margin-bottom:16px; border-bottom:1px solid #eee; }
.archive-topbar__info { font-size:0.78rem; color:#999; }
.archive-topbar__sort { display:flex; align-items:center; gap:6px; }
.archive-topbar__sort label { font-size:0.78rem; color:#999; }
.archive-topbar__sort select { font-size:0.78rem; border:1px solid #ddd; padding:6px 10px; border-radius:4px; background:#fff; cursor:pointer; color:#1a1a1a; font-weight:500; }

/* Product Grid (3 columns) */
/* Product Card Grid (Trendyol Style) */
.pcard-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

.pcard {
    display:block; text-decoration:none; color:#1a1a1a; background:#fff;
    border-radius:8px; overflow:hidden; transition:box-shadow 0.3s;
    border:1px solid #f0f0f0;
}
.pcard:hover { box-shadow:0 4px 20px rgba(0,0,0,0.08); }

.pcard__image { position:relative; aspect-ratio:1/1.1; overflow:hidden; background:#f8f8f8; }
.pcard__img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.pcard:hover .pcard__img { transform:scale(1.03); }
.pcard__noimg { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:#f5f5f5; }
.pcard__badge { position:absolute; top:10px; left:10px; font-size:0.62rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; padding:4px 10px; background:#ff6000; color:#fff; border-radius:3px; }

.pcard__body { padding:14px 16px 18px; }

.pcard__brand { display:block; font-size:0.78rem; font-weight:700; color:#1a1a1a; margin-bottom:2px; }

.pcard__title { font-size:0.78rem; font-weight:400; color:#555; line-height:1.4; margin:0 0 8px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; text-overflow:ellipsis; }

/* Stars */
.pcard__rating { display:flex; align-items:center; gap:4px; margin-bottom:8px; }
.pcard__star { font-size:0.72rem; color:#ddd; line-height:1; }
.pcard__star--full { color:#f5a623; }
.pcard__star--half { color:#f5a623; opacity:0.6; }
.pcard__reviews { font-size:0.68rem; color:#999; margin-left:2px; }

/* Prices */
.pcard__prices { display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.pcard__price-now { font-size:1.05rem; font-weight:700; color:#1a1a1a; }
.pcard__price-old { font-size:0.82rem; font-weight:400; color:#999; text-decoration:line-through; }

.pcard__colors { display:block; font-size:0.72rem; color:#999; margin-top:6px; }

/* Category label */
.product__cat { display:block; font-size:0.62rem; letter-spacing:0.1em; text-transform:uppercase; color:#999; margin-bottom:2px; }

/* Stock variants */
.product__stock { display:block; font-size:0.68rem; color:#2e7d32; margin-top:4px; }
.product__stock--out { color:#c62828; }

/* Pagination */
.archive-pagination { text-align:center; padding:40px 0 0; }
.archive-pagination .page-numbers { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; margin:0 3px; font-size:0.82rem; color:#555; text-decoration:none; border:1px solid #ddd; border-radius:6px; transition:all 0.2s; }
.archive-pagination .page-numbers:hover { background:#f5f5f5; border-color:#999; }
.archive-pagination .page-numbers.current { background:#1a1a1a; color:#fff; border-color:#1a1a1a; font-weight:600; }
.archive-pagination .prev, .archive-pagination .next { width:auto; padding:0 14px; font-size:0.75rem; font-weight:600; letter-spacing:0.04em; }

/* Empty State */
.archive-empty { text-align:center; padding:80px 20px; }
.archive-empty__icon { font-size:48px; margin-bottom:16px; }
.archive-empty h3 { font-size:0.95rem; font-weight:600; color:#1a1a1a; margin:0 0 8px; }
.archive-empty p { font-size:0.82rem; color:#999; margin:0 0 20px; }
.archive-empty__btn { display:inline-block; padding:10px 28px; background:#1a1a1a; color:#fff; font-size:0.78rem; font-weight:600; text-decoration:none; border-radius:6px; letter-spacing:0.04em; }
.archive-empty__btn:hover { background:#333; }

/* Archive Responsive */
@media (max-width: 768px) {
    .archive-content__inner { grid-template-columns:1fr; }
    .archive-sidebar { position:static; display:none; }
    .pcard-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
    .archive-banner__title { font-size:1.2rem; }
}

