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

:root {
    --primary-color: #263238;
    --primary-dark: #1a2328;
    --primary-light: #37474f;
    --secondary-color: #008ed9;
    --secondary-dark: #0077b6;
    --secondary-light: #00a8e8;
    --accent-orange: #ff6b35;
    --text-dark: #263238;
    --text-light: #666;
    --bg-light: #F5F5F5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --heading-font: "GoogleSans Regular", "Google Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 32px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.search-box {
    display: flex;
    flex: 1;
    max-width: 600px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.search-box form {
    display: flex;
    width: 100%;
    flex: 1;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--primary-dark);
}

/* ——— Akıllı arama (header): öneri paneli ——— */
.search-box.search-box--smart {
    position: relative;
    border: none;
    background: transparent;
    overflow: visible;
    box-shadow: none;
}

.search-box.search-box--smart:focus-within {
    box-shadow: none;
}

.search-box--smart .search-box__form {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.search-box--smart .search-box__shell {
    display: flex;
    width: 100%;
    flex: 1;
    align-items: stretch;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    transition: var(--transition);
}

.search-box--smart:focus-within .search-box__shell,
.search-box--smart .search-box__shell:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 50, 56, 0.1);
}

.search-box--smart .search-box__input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    min-width: 0;
}

.search-suggest {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 500;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
    max-height: min(72vh, 520px);
    overflow: hidden;
    text-align: left;
}

.search-suggest__inner {
    max-height: min(72vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.search-suggest__status {
    font-size: 12px;
    color: var(--text-light);
    padding: 8px 14px 0;
}

.search-suggest__section {
    padding: 10px 0 6px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.search-suggest__section:last-of-type {
    border-bottom: none;
}

.search-suggest__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    padding: 0 16px 6px;
}

.search-suggest__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 6px 8px;
}

.search-suggest__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    font-size: 14px;
    transition: background 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.search-suggest__item:hover,
.search-suggest__item:focus-visible {
    background: rgba(15, 23, 42, 0.06);
    outline: none;
}

.search-suggest__item--recent i {
    color: #94a3b8;
    width: 20px;
    text-align: center;
}

.search-suggest__item--product {
    align-items: center;
    gap: 12px;
}

.search-suggest__thumb {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.search-suggest__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-suggest__ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.search-suggest__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.search-suggest__name {
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
}

.search-suggest__sub {
    font-size: 12px;
    color: #64748b;
}

.search-suggest__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.search-suggest__empty,
.search-suggest__err {
    margin: 0;
    padding: 16px;
    color: #64748b;
    font-size: 14px;
}

.search-suggest__all {
    display: block;
    padding: 12px 16px 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: #fafbfc;
}

.search-suggest__all:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .mobile-search-box {
        position: relative;
        z-index: 400;
    }

    .mobile-search-box .search-suggest--mobile {
        max-height: 60vh;
    }
}

/* Arama sonuç sayfası */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.search-page-hint,
.search-no-results__tip {
    text-align: center;
    color: var(--text-light);
    margin: 20px 0;
}

.search-no-results {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 40px;
}

/* Yakında / bakımda: placeholder sayfalar (coming-soon) */
.page-wip {
    padding: 48px 0 72px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #fff 100%);
    min-height: 52vh;
}

.page-wip__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
}

.page-wip__card {
    width: 100%;
    max-width: 520px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    padding: 40px 28px 36px;
    position: relative;
}

.page-wip__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 20px;
}

.page-wip__logo {
    margin: 8px auto 20px;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-wip__logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    vertical-align: middle;
}

.page-wip__title {
    font-size: clamp(1.5rem, 2.2vw, 1.75rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 12px;
}

.page-wip__lead {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0 auto;
    max-width: 40ch;
}

.page-wip__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.page-wip__actions .btn {
    min-width: 200px;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* .btn-secondary globalde slider/hero için beyaz; açık kartta kontrast */
.page-wip__actions .btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    animation: none;
}

.page-wip__actions .btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 142, 217, 0.28);
}

/* 404: büyük kod satırı */
.page-wip--error .page-wip__code {
    display: block;
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin-bottom: 8px;
    background: linear-gradient(120deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 520px) {
    .page-wip__actions .btn {
        width: 100%;
        min-width: unset;
    }
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Dil Seçici */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn i:first-child {
    font-size: 16px;
}

.lang-code {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.lang-btn i:last-child {
    font-size: 10px;
    margin-left: 2px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.lang-option:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.lang-option.active {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.icon-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 5px;
}

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

.login-link-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 5px;
}

.login-link-wrapper:hover {
    color: var(--primary-color);
}

.icon-link i {
    font-size: 20px;
}

.icon-link span:not(.badge) {
    font-size: 11px;
    margin-top: 2px;
}

/* Giriş Yap / Üye Ol Özel Stilleri */
.login-link-wrapper {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-link-wrapper i {
    font-size: 20px;
}

.login-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    line-height: 1.2;
    margin-top: 2px;
}

.login-action,
.register-action,
.register-action-link {
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    color: var(--text-dark);
    text-decoration: none;
}

.login-action:hover,
.register-action-link:hover {
    color: var(--primary-color);
}

.register-action-link:hover {
    text-decoration: underline;
}

.login-separator {
    font-size: 10px;
    color: var(--text-light);
    margin: 0 2px;
}

.login-link-wrapper:hover .login-action,
.login-link-wrapper:hover .register-action-link {
    color: var(--primary-color);
}

.login-link-wrapper:hover .login-separator {
    color: var(--primary-color);
    opacity: 0.7;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* Navbar */
.navbar {
    border-top: 1px solid var(--border-color);
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobil arama kutusu - Desktop'ta gizli */
.mobile-search-box {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 15px 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.nav-menu a i {
    font-size: 16px;
    width: 18px;
    text-align: center;
    transition: var(--transition);
}

.nav-menu a:hover i,
.nav-menu a.active i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

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

.dropdown-menu li a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown-menu li a i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.dropdown-menu li a:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Mega Menu Styles */
.mega-menu {
    position: static;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 1400px;
    z-index: 1000;
    overflow: visible;
}

.mega-menu-view {
    display: none;
    animation: fadeIn 0.3s ease;
}

.mega-menu-view.active {
    display: block;
}

.mega-menu-main.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

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

.mega-menu-item {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    box-sizing: border-box;
}

.mega-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: var(--text-dark);
}

.mega-menu-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

.mega-menu-item:hover .mega-menu-image img {
    transform: scale(1.1);
}

.mega-menu-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.mega-menu-item h4 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.mega-menu-item:hover h4 {
    color: var(--secondary-color);
}

.mega-menu-item h4 i {
    font-size: 18px;
}

.mega-menu-item-wrapper {
    position: relative;
    overflow: visible;
}

/* Mobil menü logosu - Desktop'ta gizli */
.mobile-menu-logo {
    display: none;
}

.mega-menu-subcategories {
    display: none;
}

/* Alt Kategoriler Görünümü */
.mega-menu-subcategories-view {
    min-height: 400px;
}

.mega-menu-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.mega-menu-back-btn:hover {
    background: var(--primary-color);
    color: white;
}

.mega-menu-back-btn i {
    font-size: 14px;
}

.mega-menu-subcategories-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.mega-menu-subcategories-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mega-menu-subcategories-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: contents;
}

.mega-menu-subcategories-list ul li {
    margin-bottom: 0;
}

.mega-menu-subcategories-list ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 15px;
    background: var(--bg-light);
    border: 2px solid transparent;
    height: 100%;
    min-height: 60px;
    box-sizing: border-box;
}

.mega-menu-subcategories-list ul li a:hover {
    background: var(--bg-white);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.mega-menu-subcategories-list ul li a i {
    color: var(--secondary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

.mega-menu-subcategories-list ul li a:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 10px;
    transition: var(--transition);
    background: none;
    border: none;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle i {
    font-size: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: none;
    filter: none;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease, transform 0.8s ease;
    box-shadow: none;
    filter: none;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 40px;
    color: white;
    z-index: 3;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.slide-image {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    overflow: hidden;
    box-shadow: none !important;
    filter: none !important;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: none !important;
    filter: none !important;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 15px;
    animation: fadeInUp 0.8s ease 0.4s both;
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 142, 217, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Campaign Banners Section */
.campaign-banners {
    padding: 60px 0;
    background: var(--bg-light);
}

.banners-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.campaign-banner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--bg-white);
}

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

.banner-large {
    grid-row: span 2;
}

.banner-image {
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

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

.banner-image .placeholder-image {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.campaign-banner:hover .banner-image img {
    transform: scale(1.1);
}

.campaign-banner:hover .banner-image .placeholder-image {
    transform: scale(1.1);
}

.banner-content {
    padding: 25px;
    position: relative;
}

.banner-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.banner-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.banner-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.banner-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.banner-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Features Section */
.features {
    background: var(--bg-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

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

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

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

    .features .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 10px;
    }

    .feature-item {
        padding: 16px 8px;
    }

    .feature-item i {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .feature-item h3 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .feature-item p {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.categories .container {
    max-width: 1400px;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-heading--split {
    max-width: 100%;
    margin: 0 0 28px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.section-heading__content {
    flex: 1 1 auto;
    min-width: 0;
}

.section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(43, 108, 176, 0.15);
    background: rgba(43, 108, 176, 0.06);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.section-heading__lead {
    margin: 12px auto 0;
    max-width: 640px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.65;
}

.section-heading--split .section-heading__lead {
    margin: 12px 0 0;
    max-width: 700px;
}

.section-title {
    font-size: 40px;
    margin: 0;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 18px;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 999px;
}

.section-heading--split .section-title {
    text-align: left;
    padding-bottom: 0;
    font-size: 34px;
    font-weight: 600;
}

.section-heading--split .section-title::after {
    left: 0;
    transform: none;
}

.section-heading__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.section-heading__action:hover {
    transform: translateY(-1px);
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

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

.category-card {
    background: var(--bg-white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: var(--transition);
    cursor: pointer;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
    border-color: rgba(0, 142, 217, 0.28);
}

.category-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.02));
    opacity: 0.65;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.category-image .placeholder-image {
    background: linear-gradient(135deg, #0f172a, var(--primary-color));
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

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

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

.category-card:hover .category-image::after {
    opacity: 0.45;
}

.category-content {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.category-card h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 20px;
    line-height: 1.3;
}

.category-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    min-height: 42px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    margin-top: auto;
    color: var(--primary-dark);
    background: rgba(0, 142, 217, 0.08);
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(0, 142, 217, 0.18);
    cursor: pointer;
}

.category-link:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 142, 217, 0.3);
}

.category-link:hover {
    gap: 10px;
}

/* Kategoriler — hub sayfası (tüm ana + alt) */
.categories-hub {
    padding: 0 0 80px;
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 22%, #fff 50%);
}

.categories-hub__hero {
    position: relative;
    overflow: hidden;
    padding: 44px 0 48px;
    background:
        linear-gradient(135deg, rgba(0, 142, 217, 0.09) 0%, rgba(15, 23, 42, 0.04) 45%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(1200px 400px at 10% 0%, rgba(0, 142, 217, 0.12), transparent 60%),
        #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.categories-hub__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.45;
    pointer-events: none;
}

.categories-hub__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
}

.categories-hub__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0c4a6e;
    background: rgba(0, 142, 217, 0.1);
    border: 1px solid rgba(0, 142, 217, 0.2);
    border-radius: 999px;
}

.categories-hub__title {
    margin: 0 0 14px;
    font-size: clamp(1.85rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.2;
}

.categories-hub__lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.categories-hub__content {
    padding-top: 36px;
}

.categories-hub__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.categories-hub__card {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.categories-hub__card:hover {
    border-color: rgba(0, 142, 217, 0.22);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

.categories-hub__media {
    position: relative;
    display: block;
    min-height: 200px;
    background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 100%);
    overflow: hidden;
}

.categories-hub__media img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.categories-hub__card:hover .categories-hub__media img {
    transform: scale(1.04);
}

.categories-hub__media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.04em;
    background: linear-gradient(145deg, #0f172a, var(--secondary-color));
}

.categories-hub__media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
}

.categories-hub__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 28px 24px;
    gap: 12px;
}

.categories-hub__card-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.categories-hub__card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.categories-hub__card-title a:hover {
    color: var(--secondary-color);
}

.categories-hub__excerpt {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.categories-hub__subs-wrap {
    width: 100%;
    margin-top: 4px;
}

.categories-hub__subs-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
}

.categories-hub__subs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.categories-hub__chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.categories-hub__chip:hover {
    background: rgba(0, 142, 217, 0.1);
    border-color: rgba(0, 142, 217, 0.35);
    color: #0369a1;
    transform: translateY(-1px);
}

.categories-hub__footer {
    margin-top: auto;
    padding-top: 6px;
}

.categories-hub__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: var(--transition);
}

.categories-hub__cta:hover {
    border-bottom-color: var(--secondary-color);
    gap: 12px;
}

.categories-hub__empty {
    text-align: center;
    padding: 56px 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    color: #64748b;
}

.categories-hub__empty i {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #94a3b8;
}

.categories-hub__empty p {
    margin: 0 0 20px;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .categories-hub__card {
        grid-template-columns: 1fr;
    }

    .categories-hub__media {
        min-height: 200px;
    }
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--bg-white);
}

.products-showcase .section-title {
    margin-bottom: 0;
}

.products-showcase-head {
    margin-bottom: 26px;
}

/* Latest products (home): minimal horizontal carousel */
.latest-products {
    padding: 8px 0 56px;
    background: var(--bg-white);
}

.latest-products .container {
    max-width: 1400px;
}

.latest-products__carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 46px;
}

.latest-products__track-wrap {
    overflow: hidden;
}

.latest-products__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0 8px;
}

.latest-products__track::-webkit-scrollbar {
    display: none;
}

.latest-products__item {
    flex: 0 0 230px;
    max-width: 230px;
}

.latest-products__item .product-card {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 6px 16px rgba(2, 6, 23, 0.08);
    min-height: 100%;
}

.latest-products__item .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.14);
}

.latest-products__item .product-info {
    padding: 10px 10px 12px;
}

.latest-products__item .product-name {
    font-size: 14px;
    line-height: 1.4;
    min-height: 40px;
}

.latest-products__item .product-price .price {
    font-size: 15px;
}

.latest-products__item .btn-add-cart,
.latest-products__item .btn-view {
    border-radius: 8px;
    font-size: 11px;
    padding: 8px 7px;
}

.latest-products__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: #fff;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 6px 14px rgba(2, 6, 23, 0.14);
}

.latest-products__nav:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.latest-products__nav--prev {
    left: 8px;
}

.latest-products__nav--next {
    right: 8px;
}

@media (max-width: 900px) {
    .section-heading--split {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-heading__action {
        margin-top: 6px;
    }

    .latest-products__carousel {
        padding: 0 34px;
    }

    .latest-products__item {
        flex-basis: 190px;
        max-width: 190px;
    }

    .latest-products__nav {
        width: 30px;
        height: 30px;
    }
}

/* Ana sayfa: vitrin (sekme: yeni / çok satan / kampanyalı) */
.home-picks {
    padding: 8px 0 48px;
    background: var(--bg-white);
}

.home-picks__top {
    padding-top: 4px;
}

/* Vitrin: kurumsal sekme (üst genel .product-tab stillerini aşan ince satır) */
.home-picks .home-picks__tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 0 28px;
    padding: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    background: transparent;
}

.home-picks .home-picks__tabs .product-tab {
    position: relative;
    margin: 0;
    padding: 18px 22px 20px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    transform: none;
}

@media (min-width: 640px) {
    .home-picks .home-picks__tabs .product-tab {
        padding: 20px 32px 22px;
        font-size: 12px;
    }
}

.home-picks .home-picks__tabs .product-tab::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -1px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px 1px 0 0;
    opacity: 0;
    transform: scaleX(0.85);
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.home-picks .home-picks__tabs .product-tab .product-tab__label {
    display: block;
    line-height: 1.35;
    max-width: 22ch;
    text-align: center;
    margin: 0 auto;
    white-space: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
}

@media (min-width: 900px) {
    .home-picks .home-picks__tabs .product-tab .product-tab__label {
        white-space: nowrap;
        max-width: none;
    }
}

.home-picks .home-picks__tabs .product-tab:hover {
    color: #0f172a;
    background: rgba(15, 23, 42, 0.04);
}

.home-picks .home-picks__tabs .product-tab:hover::after {
    opacity: 0.35;
    transform: scaleX(0.5);
}

.home-picks .home-picks__tabs .product-tab:focus-visible {
    color: #0f172a;
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
    border-radius: 2px;
}

.home-picks .home-picks__tabs .product-tab:focus-visible::after {
    opacity: 0.5;
    transform: scaleX(0.65);
}

.home-picks .home-picks__tabs .product-tab.active {
    color: #0f172a;
    background: transparent;
    border: none;
    box-shadow: none;
}

.home-picks .home-picks__tabs .product-tab.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.home-picks__panes {
    max-width: 1400px;
    margin: 0 auto;
}

.home-picks .products-slide {
    display: none;
    width: 100%;
}

.home-picks .products-slide.active {
    display: block;
}

.home-picks .latest-products__carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 46px;
}

.home-picks__empty {
    margin: 0;
    padding: 32px 16px;
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    width: 100%;
    min-width: 100%;
}

@media (max-width: 900px) {
    .home-picks .latest-products__carousel {
        padding: 0 34px;
    }
}

.products-showcase-lead {
    margin: 0 auto;
    max-width: 620px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
    background: transparent;
    border-bottom: none;
    flex-wrap: wrap;
}

.product-tab {
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.product-tab:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}

.product-tab.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 18px rgba(0, 142, 217, 0.22);
}

.product-tab__label {
    line-height: 1.2;
}

.product-tab__count {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(15, 23, 42, 0.08);
    color: inherit;
}

.product-tab.active .product-tab__count {
    background: rgba(255, 255, 255, 0.25);
}

.products-carousel-wrapper {
    position: relative;
    background: linear-gradient(135deg, #0e7490 0%, #0369a1 50%, #0284c7 100%);
    padding: 34px 0;
    border-radius: 18px;
    width: 100%;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.24);
}

.products-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 74px;
}

.products-slide {
    display: none;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

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

.products-slide.active {
    display: flex;
}

.products-slide .product-card {
    min-width: calc(25% - 19px);
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.96);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.22);
    transition: var(--transition);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.06);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Homepage showcase cards: minimal + premium */
.products-showcase .product-card {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    max-width: 250px;
}

.products-showcase .product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.18);
    border-color: rgba(2, 132, 199, 0.36);
}

.products-showcase .product-image {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: #f1f5f9;
    padding-top: 78%;
}

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

.products-showcase .product-badge {
    box-shadow: none;
}

.products-showcase .product-favorite-btn {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.products-showcase .product-info {
    padding: 11px 11px 11px;
    gap: 7px;
}

.products-showcase .product-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    min-height: 40px;
    max-height: 40px;
}

.products-showcase .product-price .price {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

.products-showcase .product-price .price-old {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
}

.products-showcase .product-buttons {
    margin-top: 2px;
    gap: 8px;
}

.products-showcase .btn-add-cart,
.products-showcase .btn-view {
    border-radius: 9px;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 8px;
}

.products-showcase .products-slide {
    gap: 14px;
}

.products-showcase .products-slide .product-card {
    min-width: 230px;
    max-width: 230px;
}

.products-showcase .btn-view {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.14);
    color: #0f172a;
}

.products-showcase .btn-view:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: #ffffff;
}

@media (max-width: 768px) {
    .products-showcase .products-slide {
        gap: 10px;
    }

    .products-showcase .products-slide .product-card {
        min-width: 176px;
        max-width: 176px;
    }

    .products-showcase .product-image {
        padding-top: 74%;
    }
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    z-index: 2;
}

.product-badges-bottom {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: flex;
    align-items: flex-start;
    z-index: 2;
}

.product-badge {
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.10);
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    gap: 4px;
    border: 1px solid transparent;
    backdrop-filter: blur(2px);
}

/* Ürün kartı — manuel etiket: düz, ikonsuz, net (ör. HIZLI KARGO) */
.product-badge.product-badge--manual {
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #ffffff;
    gap: 0;
}

.product-badge.product-badge--manual i {
    display: none;
}

.product-badge.product-badge--manual.product-badge--neutral {
    background: #546e7a;
}

.product-badge.product-badge--manual.product-badge--info {
    background: #0284c7;
}

.product-badge.product-badge--manual.product-badge--success {
    background: #16a34a;
}

.product-badge.product-badge--manual.product-badge--warning {
    background: #d97706;
}

.product-badge.product-badge--manual.product-badge--danger {
    background: #dc2626;
}

.product-badge.product-badge--manual.product-badge--dark {
    background: #1e293b;
}

.product-badge i {
    font-size: 9px;
    opacity: 0.85;
}

/* Ürün detay — tüm rozetler kart etiketi ile aynı sade, düz stil */
.product-badges-detail .product-badge {
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #ffffff;
    gap: 0;
    white-space: normal;
}

.product-badges-detail .product-badge i {
    display: none;
}

.product-badges-detail .badge-discount {
    background: #dc2626;
}

.product-badges-detail .badge-campaign {
    background: #d97706;
}

.product-badges-detail .badge-new {
    background: #16a34a;
}

.product-badges-detail .badge-bestseller {
    background: #7c3aed;
}

.product-badges-detail .badge-featured {
    background: #0284c7;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio - kare */
    overflow: hidden;
    background: var(--bg-light);
}

.product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    display: block;
}

.product-image img:not([src]),
.product-image img[src=""] {
    display: none;
}

.product-image img:not([src]) + .placeholder-image,
.product-image img[src=""] + .placeholder-image {
    display: flex;
}

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

.product-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-favorite-btn:hover {
    background: white;
    color: #e74c3c;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-favorite-btn.active {
    background: #e74c3c;
    color: white;
}

.product-favorite-btn.active i {
    color: white;
}

.product-favorite-btn i {
    font-size: 18px;
    transition: var(--transition);
}

.product-code {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(38, 50, 56, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.campaign-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-orange);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.campaign-products {
    padding: 60px 0;
    background: var(--bg-light);
}

.campaign-products .container {
    max-width: 1400px;
}

.campaign-products .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
}

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

/* Campaign Products Responsive */
@media (max-width: 1024px) {
    .campaign-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .campaign-products {
        padding: 40px 0;
    }
    
    .campaign-products .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .campaign-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .campaign-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .modal {
        max-width: calc(100vw - 24px);
        margin: 12px;
        padding: 20px 16px 16px;
        max-height: calc(100vh - 24px);
    }
    
    .modal-overlay {
        padding: 0;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-header p {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .campaign-products .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h3 {
        font-size: 20px;
    }
    
    .footer-column h4,
    .footer__heading {
        font-size: 0.65rem;
    }
    
    .company-info li {
        font-size: 12px;
    }
    
    .company-info li strong {
        min-width: 90px;
        font-size: 12px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mega-menu-image {
        height: 120px;
    }
    
    .mega-menu-item h4 {
        font-size: 13px;
        padding: 10px;
    }
    
    .mega-menu-content {
        padding: 15px;
    }
    
    .mega-menu-subcategories-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mega-menu-subcategories-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .mega-menu-subcategories-list ul li a {
        padding: 12px 15px;
        font-size: 14px;
    }
}

.product-image .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    color: var(--text-light);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

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

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-height: 0;
}

.product-price {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-price .price-old {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-buttons {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.btn-add-cart,
.btn-view {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

/* Sepete Ekle Butonu - Beyaz yazı rengi garantisi */
.btn-add-cart {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-add-cart:hover,
.btn-add-cart:focus,
.btn-add-cart:active {
    background: #2e7d32 !important; /* Daha koyu yeşil - kesinlikle beyaz değil */
    color: #ffffff !important;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 142, 217, 0.3);
}

.btn-add-cart.btn-out-of-stock,
.btn-add-cart.btn-out-of-stock:hover,
.btn-add-cart.btn-out-of-stock:focus,
.btn-add-cart.btn-out-of-stock:active,
.btn-add-cart:disabled {
    background: #9ca3af !important;
    color: #ffffff !important;
    border: none !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.95;
}

/* Tüm parent container'lar için */
.product-buttons .btn-add-cart,
.product-detail-actions .btn-add-cart,
.product-card .btn-add-cart,
.products-slide .btn-add-cart,
.campaign-products-carousel .btn-add-cart {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
}

.product-buttons .btn-add-cart:hover,
.product-buttons .btn-add-cart:focus,
.product-buttons .btn-add-cart:active,
.product-detail-actions .btn-add-cart:hover,
.product-detail-actions .btn-add-cart:focus,
.product-detail-actions .btn-add-cart:active,
.product-card .btn-add-cart:hover,
.product-card .btn-add-cart:focus,
.product-card .btn-add-cart:active,
.products-slide .btn-add-cart:hover,
.products-slide .btn-add-cart:focus,
.products-slide .btn-add-cart:active,
.campaign-products-carousel .btn-add-cart:hover,
.campaign-products-carousel .btn-add-cart:focus,
.campaign-products-carousel .btn-add-cart:active {
    background: #2e7d32 !important; /* Daha koyu yeşil - kesinlikle beyaz değil */
    color: #ffffff !important;
}

.btn-view {
    background: var(--primary-color);
    color: white;
    border: none;
    text-decoration: none;
}

.btn-view:hover {
    background: #0077b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 142, 217, 0.3);
    text-decoration: none;
}

.btn-view:focus,
.btn-view:active {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
    min-height: 42px;
    max-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    font-weight: 700;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
    font-size: 14px;
}

.product-rating span {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-unit {
    font-size: 14px;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 35px;
}

/* Footer — modern slate / glass */
.footer {
    position: relative;
    background: linear-gradient(180deg, #0f172a 0%, #020617 48%, #020617 100%);
    color: #94a3b8;
    padding: 0 0 24px;
    margin-top: 0;
}

.footer__gradient-top {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #00a8e8) 0%, var(--secondary-color, #005f87) 50%, #0f172a 100%);
    opacity: 0.95;
}

.footer__container {
    padding-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px 28px;
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3 {
    color: #f1f5f9;
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-column h4,
.footer__heading {
    color: #f1f5f9;
    margin: 0 0 1.1rem 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-column h4 i:first-child,
.footer__heading .footer__heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(0, 142, 217, 0.2), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #7dd3fc;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer__heading .footer__heading-icon {
    line-height: 0;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column > ul:not(.contact-info) li {
    margin-bottom: 0.35rem;
}

.footer-column > ul:not(.contact-info) li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.5rem 0.45rem 0.4rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.footer-column > ul:not(.contact-info) li a i {
    color: #64748b;
    font-size: 0.8rem;
    width: 1rem;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.footer-column > ul:not(.contact-info) li a:hover {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.04);
    padding-left: 0.5rem;
}

.footer-column > ul:not(.contact-info) li a:hover i {
    color: #38bdf8;
}

.footer__divider {
    height: 1px;
    margin: 40px 0 32px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2) 20%, rgba(148, 163, 184, 0.2) 80%, transparent);
    border: 0;
}

.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.contact-info__ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #7dd3fc;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 1px;
}

.contact-info__text {
    color: #cbd5e1;
    flex: 1;
    min-width: 0;
}

.contact-info li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.contact-info li a:hover {
    color: #7dd3fc;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover {
    background: rgba(0, 142, 217, 0.2);
    border-color: rgba(0, 142, 217, 0.45);
    color: #f8fafc;
    transform: translateY(-2px);
}

.company-info {
    list-style: none;
}

.company-info li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 13px;
    color: #bbb;
}

.company-info li strong {
    color: white;
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 0 0 8px;
    color: #94a3b8;
    border: none;
}

.footer-payment-security {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    flex-wrap: wrap;
    gap: 28px 20px;
}

.security-badges,
.payment-cards {
    flex: 1;
    min-width: min(300px, 100%);
}

.security-badges h5,
.payment-cards h5 {
    color: #e2e8f0;
    font-size: 0.7rem;
    font-weight: 800;
    margin: 0 0 0.9rem 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.badges-grid,
.cards-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1;
    min-width: 112px;
    max-width: 200px;
    justify-content: center;
}

.security-badge:hover {
    background: rgba(0, 142, 217, 0.12);
    border-color: rgba(0, 142, 217, 0.35);
    color: #f8fafc;
    transform: translateY(-2px);
}

.security-badge i {
    color: #38bdf8;
    font-size: 1.1rem;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1;
    min-width: 112px;
    max-width: 200px;
    justify-content: center;
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #f1f5f9;
    transform: translateY(-2px);
}

.payment-card i {
    font-size: 1.2rem;
    color: #f8fafc;
}

.payment-card i.fa-cc-visa {
    color: #1434cb;
}

.payment-card i.fa-cc-mastercard {
    color: #eb001b;
}

.payment-card i.fa-cc-amex {
    color: #006fcf;
}

.payment-card i.fa-credit-card {
    color: #ff6b00;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex: 1;
    min-width: 250px;
}

.footer-copyright p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #94a3b8;
}

.footer-legal-note {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #64748b;
    margin: 0;
}


.footer-bottom > p {
    margin: 0;
}

.marlev-credit {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marlev-link {
    display: inline-flex;
    align-items: center;
    gap: 8px 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.marlev-link:hover {
    background: rgba(0, 142, 217, 0.12);
    border-color: rgba(0, 142, 217, 0.4);
    color: #f1f5f9;
    transform: translateY(-1px);
}

.marlev-link i:first-child {
    color: #7dd3fc;
    font-size: 0.95rem;
    transition: var(--transition);
}

.marlev-link:hover i:first-child {
    color: #bae6fd;
}

.marlev-text {
    color: #94a3b8;
    font-weight: 500;
    transition: var(--transition);
}

.marlev-name {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.marlev-link:hover .marlev-text {
    color: #e2e8f0;
}

.marlev-link:hover .marlev-name {
    color: #fff;
}

.marlev-link i:last-child {
    color: #64748b;
    font-size: 11px;
    opacity: 0.85;
    transition: var(--transition);
}

.marlev-link:hover i:last-child {
    color: #7dd3fc;
    transform: translateX(2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-top {
        grid-template-columns: auto 1fr;
        gap: 15px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
        width: 100%;
    }
    
    .header-icons {
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        width: 85%;
        max-width: 400px;
        height: 100vh;
        padding: 0 0 20px;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
        z-index: 10000 !important;
        overflow-y: auto;
        pointer-events: auto !important;
    }
    
    .nav-menu.active {
        left: 0;
        pointer-events: auto !important;
        z-index: 10000 !important;
    }
    
    .nav-menu.active *,
    .nav-menu * {
        pointer-events: auto !important;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9998;
        pointer-events: none;
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        pointer-events: auto;
        z-index: 9998 !important;
    }
    
    /* Menü her zaman overlay'in üstünde olmalı */
    .nav-menu.active {
        z-index: 10000 !important;
        pointer-events: auto !important;
    }
    
    .nav-menu.active * {
        pointer-events: auto !important;
        position: relative;
        z-index: 1;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li:first-child:not(.mobile-menu-logo) {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .mobile-menu-logo {
        display: block !important;
        padding: 20px !important;
        padding-top: 30px !important;
        text-align: center;
        background: var(--bg-white);
        border-bottom: 2px solid var(--border-color);
        margin: 0 !important;
        margin-bottom: 10px !important;
        flex-shrink: 0;
    }
    
    .mobile-menu-logo .mobile-logo-img {
        height: 50px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .nav-menu > li:not(.mobile-menu-logo) {
        padding: 0 20px;
    }
    
    .nav-menu > li:not(.mobile-menu-logo):nth-child(odd) {
        background: rgba(0, 142, 217, 0.03);
    }
    
    .nav-menu > li:not(.mobile-menu-logo):nth-child(even) {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 16px 20px;
        padding-right: 40px;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        margin: 4px 0;
    }
    
    .nav-menu > li > a .fa-chevron-down {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .nav-menu > li.dropdown.active > a .fa-chevron-down,
    .nav-menu > li.mega-menu.active > a .fa-chevron-down {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 16px 20px;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        margin: 4px 0;
        text-align: left;
    }
    
    .nav-menu a:hover {
        background: var(--secondary-color);
        color: var(--bg-white);
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 142, 217, 0.3);
    }
    
    .nav-menu a.active {
        background: var(--secondary-color);
        color: var(--bg-white);
        box-shadow: 0 4px 12px rgba(0, 142, 217, 0.3);
    }
    
    .nav-menu a i {
        font-size: 18px;
        width: 24px;
        min-width: 24px;
        text-align: left;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .nav-menu > li > a > i:not(.fa-chevron-down) {
        text-align: center;
    }
    
    .nav-menu a {
        text-align: left;
    }
    
    .nav-menu a:hover i,
    .nav-menu a.active i {
        transform: scale(1.2);
        color: var(--bg-white);
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--text-dark);
        padding: 5px;
        min-width: 40px;
        height: 40px;
        font-size: 24px;
        transition: var(--transition);
        background: none;
        border: none;
    }
    
    .mobile-menu-toggle:hover {
        color: var(--primary-color);
    }
    
    .mobile-menu-toggle i {
        font-size: 24px;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none !important;
        box-shadow: none;
        background: rgba(0, 142, 217, 0.05);
        padding: 0 !important;
        margin: 8px 0 0 0 !important;
        border: none;
        border-radius: 8px;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, visibility 0.4s ease;
        display: block !important;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 1000px !important;
        padding: 12px 0 !important;
        margin-top: 8px !important;
    }
    
    .dropdown-menu li {
        border-bottom: none;
        padding: 0;
        background: transparent;
        width: 100%;
    }
    
    .dropdown-menu li:nth-child(odd),
    .dropdown-menu li:nth-child(even) {
        background: transparent;
    }
    
    .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px !important;
        font-size: 14px;
        color: var(--text-dark);
        border-radius: 6px;
        transition: all 0.3s ease;
        margin: 2px 0;
        width: 100%;
    }
    
    .dropdown-menu a:hover {
        background: var(--secondary-color);
        color: var(--bg-white);
        transform: translateX(5px);
    }
    
    .dropdown-menu a i {
        font-size: 14px;
        width: 20px;
    }
    
    .mega-menu-content {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none !important;
        box-shadow: none;
        background: rgba(0, 142, 217, 0.05);
        margin: 8px 0 0 0 !important;
        padding: 0 !important;
        border-radius: 8px;
        max-width: 100% !important;
        left: auto !important;
        width: 100% !important;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, visibility 0.4s ease;
        display: block !important;
    }
    
    .mega-menu.active .mega-menu-content {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 3000px !important;
        padding: 20px !important;
        margin-top: 8px !important;
    }
    
    .mega-menu-main,
    .mega-menu-subcategories-view {
        display: block !important;
    }
    
    .mega-menu-view {
        display: none !important;
    }
    
    .mega-menu-view.active {
        display: block !important;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        align-items: stretch;
    }
    
    .mega-menu-item-wrapper {
        height: 100%;
        display: flex;
    }
    
    .mega-menu-item {
        width: 100%;
        height: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: column;
    }
    
    .mega-menu-image {
        height: 120px;
        min-height: 120px;
        flex-shrink: 0;
    }
    
    .mega-menu-item h4 {
        font-size: 14px;
        padding: 12px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
    }
    
    .mega-menu-content {
        padding: 20px;
    }
    
    .mega-menu-subcategories-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .mega-menu-subcategories-list ul li {
        height: 100%;
        display: flex;
    }
    
    .mega-menu-subcategories-list ul li a {
        width: 100%;
        height: 100%;
        min-height: 60px;
        display: flex;
        align-items: center;
        padding: 15px 12px !important;
        font-size: 13px;
        box-sizing: border-box;
    }
    
    .mega-menu-subcategories-title {
        font-size: 20px;
    }
    
    .hero {
        height: 500px;
    }
    
    /* Mobilde slider'ı tam ekran resim yap */
    .slide {
        flex-direction: column;
    }
    
    .slide-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
        height: 100%;
        z-index: 1;
    }
    
    .slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        flex: none !important;
        max-width: 100% !important;
        padding: 30px 20px 80px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
        z-index: 2;
        height: auto;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        text-align: center;
    }
    
    .slide-content p {
        font-size: 15px;
        margin-bottom: 20px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        opacity: 0.95;
        text-align: center;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
        text-align: center;
    }
    
    /* Slider kontrollerini küçült */
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-large {
        grid-row: span 1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
    }
    
    .logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .header-actions {
        display: flex;
        flex-direction: row;
        gap: 0;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    /* Mobilde arama kutusunu header-top'tan gizle */
    .header-actions .search-box {
        display: none;
    }
    
    .header-icons {
        gap: 12px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .header-icons .mobile-menu-toggle {
        display: flex;
    }
    
    .icon-link {
        padding: 5px;
        min-width: 40px;
    }
    
    .icon-link i {
        font-size: 18px;
    }
    
    .icon-link span:not(.badge) {
        display: none;
    }
    
    .login-text {
        display: none;
    }
    
    .login-link {
        min-width: auto;
    }
    
    .language-selector {
        flex-shrink: 0;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .lang-code {
        min-width: 25px;
        font-size: 10px;
    }
    
    .lang-btn i:first-child {
        font-size: 14px;
    }
    
    .lang-btn i:last-child {
        font-size: 9px;
    }
    
    .badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -2px;
        right: -2px;
    }
    
    /* Navbar'a arama kutusu ekle */
    .navbar {
        padding: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    /* Mobilde arama kutusunu navbar içinde göster */
    .mobile-search-box {
        display: block;
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        padding: 10px 20px;
        border-bottom: 1px solid var(--border-color);
        background: var(--bg-light);
    }
    
    .mobile-search-box .search-box {
        display: flex;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .mobile-search-box .search-box form {
        display: flex;
        width: 100%;
    }

    /* Akıllı arama: sütun düzeni (aksi halde öneri paneli yan flex satırında kalıp gönderimi bozabiliyor) */
    .mobile-search-box .search-box--smart .search-box__form {
        flex-direction: column !important;
        align-items: stretch;
    }
    
    .mobile-search-box .search-box input {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .mobile-search-box .search-box input::placeholder {
        font-size: 13px;
    }
    
    .mobile-search-box .search-btn {
        padding: 10px 18px;
        font-size: 16px;
    }
    
    .nav-menu {
        gap: 15px;
        padding: 12px 0;
    }
    
    .nav-menu a {
        font-size: 13px;
        gap: 5px;
        padding: 5px 0;
    }
    
    .nav-menu a i {
        font-size: 14px;
        width: 16px;
    }
    
    .hero {
        height: 400px;
    }
    
    .slide-content {
        padding: 25px 15px 70px;
        text-align: center;
        align-items: center;
    }
    
    .slide-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 18px;
        text-align: center;
    }
    
    .btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .product-tab {
        padding: 12px 20px;
        font-size: 14px;
        margin-right: 0;
        flex: 1;
        min-width: calc(33.333% - 5px);
    }
    
    .products-carousel-wrapper {
        padding: 30px 0;
        width: 100%;
    }
    
    .products-carousel {
        padding: 0 50px;
    }
    
    .products-slide .product-card {
        min-width: calc(50% - 8px);
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .btn-add-cart,
    .btn-view {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .product-price .price {
        font-size: 20px;
    }
    
    .product-price .price-old {
        font-size: 16px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-payment-security {
        flex-direction: column;
        text-align: center;
    }
    
    .security-badges,
    .payment-cards {
        width: 100%;
    }
    
    .badges-grid,
    .cards-grid {
        justify-content: center;
    }
    
    .footer-credits {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .company-info li strong {
        min-width: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .marlev-credit {
        margin-top: 10px;
    }
    
    .site-floating-actions {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }
    
    .chatbox-window {
        width: 90vw;
        right: 0;
    }
    
    .modal {
        max-width: calc(100vw - 32px);
        width: 100%;
        margin: 16px;
        padding: 24px 20px 20px;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
    }
    
    .modal-overlay {
        padding: 0;
        align-items: flex-start;
        padding-top: 0;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
        z-index: 10001;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-header p {
        font-size: 13px;
    }
    
    .modal-body {
        font-size: 13px;
    }
    
    .product-detail-modal .modal-close {
        position: fixed;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .product-detail-modal {
        max-width: 100vw;
        width: 100%;
        max-height: 100vh;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        padding: 0;
    }
    
    .product-detail-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 100vh;
        overflow-y: auto;
        padding-bottom: 120px;
    }
    
    /* Başlık bölümü - En üstte */
    .product-detail-info {
        display: contents;
    }
    
    .product-detail-header {
        order: 1;
        padding: 20px 15px 15px;
        background: var(--bg-white);
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .product-detail-code {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    
    .product-detail-title {
        font-size: 20px;
        margin: 0 0 15px 0;
        line-height: 1.4;
        padding-right: 40px;
    }
    
    .product-detail-price-section {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin: 0;
    }
    
    .product-detail-price {
        font-size: 24px;
    }
    
    .product-detail-old-price {
        font-size: 18px;
    }
    
    /* Resim bölümü - Başlığın altında */
    .product-detail-images {
        order: 2;
        padding: 0;
        margin: 0;
    }
    
    .product-main-image {
        height: 300px;
        min-height: 300px;
        border-radius: 0;
        margin: 0;
    }
    
    .product-thumbnails {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 15px;
        background: var(--bg-light);
    }
    
    .product-thumbnails .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    /* Açıklama bölümü - Resmin altında */
    .product-detail-description {
        order: 3;
        font-size: 14px;
        line-height: 1.6;
        padding: 20px 15px;
        background: var(--bg-white);
        border-top: 1px solid var(--border-color);
        margin: 0;
    }
    
    .product-detail-description h3 {
        font-size: 16px;
        margin-bottom: 10px;
        color: var(--primary-color);
    }
    
    .product-detail-description p {
        margin: 0;
        color: var(--text-dark);
    }
    
    /* Özellikler bölümü - Açıklamanın altında */
    .product-detail-features {
        order: 4;
        padding: 20px 15px;
        background: var(--bg-white);
        border-top: 1px solid var(--border-color);
    }
    
    .product-detail-features h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: var(--primary-color);
    }
    
    .product-detail-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .product-detail-features ul li {
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--text-dark);
    }
    
    .product-detail-features ul li i {
        color: var(--secondary-color);
        font-size: 14px;
    }
    
    /* Butonlar - En altta */
    .product-detail-actions {
        order: 5;
        flex-direction: column;
        gap: 10px;
        margin: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 15px;
        border-top: 2px solid var(--border-color);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .btn-add-cart-large,
    .btn-favorite-large {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Yüzen aksiyonlar: canlı sohbet + WhatsApp — alt köşe, sütun; biri gizlenince kalan aşağı kayar */
.site-floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
    pointer-events: none;
}
.site-floating-actions > * {
    pointer-events: auto;
}
.site-floating-actions .chatbox {
    position: relative;
    z-index: 2;
}
.site-floating-actions .phone-float,
.site-floating-actions .email-float,
.site-floating-actions .whatsapp-float {
    z-index: 1;
}

/* Yüzen telefon / e-posta (sütun: chat → telefon → e-posta → WhatsApp) */
.phone-float,
.email-float {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 24px;
}

.phone-float {
    background: #0ea5e9;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.45);
}

.phone-float:hover {
    background: #0284c7;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.55);
}

.email-float {
    background: #4f46e5;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.email-float:hover {
    background: #4338ca;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(67, 56, 202, 0.5);
}

.phone-float i {
    font-size: 26px;
}

.email-float i {
    font-size: 24px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: relative;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
}

.whatsapp-tooltip,
.phone-tooltip,
.email-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #2b2b2b;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-tooltip::after,
.phone-tooltip::after,
.email-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #2b2b2b;
}

.whatsapp-float:hover .whatsapp-tooltip,
.phone-float:hover .phone-tooltip,
.email-float:hover .email-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Chatbox — konumu .site-floating-actions flex sütununda; üstte sticky .header (1000) üzerinde, modal (1500) altında */
.chatbox {
    position: relative;
}

.chatbox-toggle {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.chatbox-unread {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: #e11d48;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
    z-index: 2;
    pointer-events: none;
}

.chatbox--unread .chatbox-toggle {
    box-shadow: 0 0 0 2px #fff, 0 4px 18px rgba(225, 29, 72, 0.55);
    animation: chatbox-unread-pulse 1.4s ease-in-out infinite;
}

@keyframes chatbox-unread-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 2px #fff, 0 4px 18px rgba(225, 29, 72, 0.55);
    }
    50% {
        box-shadow: 0 0 0 2px #fff, 0 4px 22px rgba(225, 29, 72, 0.75), 0 0 0 8px rgba(225, 29, 72, 0.2);
    }
}

@media (prefers-reduced-motion: reduce) {
    .chatbox--unread .chatbox-toggle {
        animation: none;
    }
}

.chatbox-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.chatbox-toggle i {
    font-size: 30px;
}

.chatbox-tooltip {
    position: absolute;
    right: 70px;
    bottom: 12px;
    background: #2b2b2b;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.chatbox-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #2b2b2b;
}

.chatbox-toggle:hover .chatbox-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.chatbox-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.chatbox.open .chatbox-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbox-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbox-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbox-title i {
    font-size: 22px;
}

.chatbox-title span {
    font-weight: 600;
    display: block;
}

.chatbox-title small {
    font-size: 11px;
    opacity: 0.9;
}

.chatbox-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.chatbox-sound {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chatbox-sound:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.chatbox-sound[aria-pressed="true"] {
    background: rgba(0, 0, 0, 0.2);
    color: #ffcdd2;
}

.chatbox-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chatbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.chatbox-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.chatbox-inpanel-alert {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    margin: 0 10px 6px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
    border: 1px solid #90caf9;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.12);
    font-size: 12px;
    line-height: 1.35;
    color: #0d47a1;
    animation: chatbox-inpanel-in 0.28s ease-out;
}

.chatbox-inpanel-alert[hidden] {
    display: none !important;
    animation: none;
}

.chatbox-inpanel-alert__row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
    flex: 1;
    padding-top: 2px;
}

.chatbox-inpanel-alert__row i {
    color: #1565c0;
    margin-top: 1px;
    flex-shrink: 0;
}

.chatbox-inpanel-alert__text {
    display: block;
    word-break: break-word;
    font-weight: 600;
}

.chatbox-inpanel-alert__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.chatbox-inpanel-alert__btn {
    border: none;
    background: #1565c0;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.chatbox-inpanel-alert__btn:hover {
    background: #0d47a1;
}

.chatbox-inpanel-alert__dismiss {
    border: none;
    background: rgba(13, 71, 161, 0.12);
    color: #0d47a1;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.chatbox-inpanel-alert__dismiss:hover {
    background: rgba(13, 71, 161, 0.2);
}

@keyframes chatbox-inpanel-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .chatbox-inpanel-alert {
        animation: none;
    }
}

.chatbox-header--incoming {
    animation: chatbox-header-pulse 0.6s ease-out 0s 2;
}

@keyframes chatbox-header-pulse {
    0%,
    100% {
        filter: brightness(1);
        box-shadow: none;
    }
    50% {
        filter: brightness(1.12);
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
    }
}

@media (prefers-reduced-motion: reduce) {
    .chatbox-header--incoming {
        animation: none;
    }
}

.chatbox-gate {
    padding: 12px 14px 14px;
    background: #fafbfc;
    border-bottom: 1px solid #e8e8e8;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.chatbox-gate__intro {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.5;
    color: #555;
}

.chatbox-gate__fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chatbox-gate__label {
    font-size: 11px;
    font-weight: 600;
    color: #444;
    margin: 4px 0 0;
}

.chatbox-gate-input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
}

.chatbox-gate-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(45, 134, 89, 0.12);
}

.chatbox-gate__error {
    margin: 8px 0 0;
    font-size: 12px;
}

.chatbox-gate__submit {
    width: 100%;
    margin-top: 12px;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.chatbox-gate__submit:hover {
    filter: brightness(0.95);
}

.chatbox-gate__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.chatbox-messages {
    padding: 12px;
    background: #f5f6f8;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.chat-message {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.chat-message .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.chat-message.user .avatar {
    background: #555;
}

.chat-message .message-content {
    max-width: 230px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 13px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.chat-message.bot .message-content {
    background: #ffffff;
}

.chat-message.user .message-content {
    background: var(--primary-color);
    color: #fff;
}

.chat-message.admin {
    flex-direction: row;
}

.chat-message.admin .avatar {
    background: #1565c0;
}

.chat-message.admin .message-content {
    background: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #bbdefb;
}

.chat-message.system,
.chat-message.chat-message--system {
    justify-content: center;
    margin-bottom: 8px;
}

.chat-message.system .message-content,
.chat-message.chat-message--system .message-content {
    max-width: 100%;
    background: #eceff1;
    color: #546e7a;
    font-size: 12px;
    text-align: center;
    box-shadow: none;
}

.chat-message.system .avatar,
.chat-message.chat-message--system .avatar {
    display: none;
}

.chatbox-title-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.chatbox-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.chatbox-status[data-state="online"] {
    background: #2e7d32;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.25);
}

.chatbox-status[data-state="offline"] {
    background: #9e9e9e;
}

.chatbox-status[data-state="unknown"] {
    background: #bdbdbd;
}

.chatbox-lead {
    padding: 8px 12px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.chatbox-lead__row {
    margin-bottom: 6px;
}

.chatbox-lead-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
}

.chatbox-error {
    margin: 0 12px 8px;
    font-size: 12px;
    color: #c62828;
}

/* Sohbet yönetici tarafından kapatıldığında */
.chatbox-locked {
    margin: 0 12px 10px;
    padding: 12px 14px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #5d4037;
}

.chatbox-locked__text {
    margin: 0 0 10px;
}

.chatbox-locked__btn {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color, #2d8659);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.chatbox-locked__btn:hover {
    filter: brightness(0.95);
}

.chatbox--conv-closed .chatbox-input,
.chatbox--conv-closed .chatbox-send {
    opacity: 0.55;
    pointer-events: none;
}

.chatbox--conv-closed .chatbox-input:disabled {
    cursor: not-allowed;
    background: #f5f5f5;
}

.chat-message .time {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    opacity: 0.7;
}

.chatbox-form {
    display: flex;
    align-items: center;
    padding: 8px;
    border-top: 1px solid #e0e0e0;
    background: #fff;
    gap: 8px;
}

.chatbox-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
}

.chatbox-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(45, 134, 89, 0.15);
}

.chatbox-send {
    border: none;
    background: var(--primary-color);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.chatbox-send:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Login Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1500;
}

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

.modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 30px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.3s ease;
}

/* Sepet ve Favori Modalı - Daha Geniş */
#cart-modal .modal,
#favorites-modal .modal {
    max-width: 800px;
    padding: 30px;
}

@media (max-width: 992px) {
    #cart-modal .modal,
    #favorites-modal .modal {
        max-width: 700px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    #cart-modal .modal,
    #favorites-modal .modal {
        max-width: calc(100vw - 32px);
        padding: 20px;
    }
}

@media (max-width: 480px) {
    #cart-modal .modal,
    #favorites-modal .modal {
        max-width: calc(100vw - 24px);
        margin: 12px;
        padding: 16px;
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

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

.modal-header h2 {
    margin-bottom: 8px;
    font-size: 24px;
    color: var(--text-dark);
}

.modal-header p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.modal-body {
    font-size: 14px;
    color: var(--text-light);
}

#cart-modal .modal-body,
#favorites-modal .modal-body {
    padding: 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

@media (max-width: 768px) {
    #cart-modal .modal-body,
    #favorites-modal .modal-body {
        max-height: calc(100vh - 180px);
    }
}

@media (max-width: 480px) {
    #cart-modal .modal-body,
    #favorites-modal .modal-body {
        max-height: calc(100vh - 160px);
    }
}

#cart-modal .modal-body::-webkit-scrollbar,
#favorites-modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#cart-modal .modal-body::-webkit-scrollbar-track,
#favorites-modal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

#cart-modal .modal-body::-webkit-scrollbar-thumb,
#favorites-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

#cart-modal .modal-body::-webkit-scrollbar-thumb:hover,
#favorites-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.empty-state {
    text-align: center;
    padding: 20px 10px 10px;
}

.empty-state i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.empty-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.empty-state p {
    margin-bottom: 15px;
}

.modal-form .form-group {
    margin-bottom: 15px;
}

.modal-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.modal-form input[type="email"],
.modal-form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.modal-form input[type="email"]:focus,
.modal-form input[type="password"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(45, 134, 89, 0.15);
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    gap: 10px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.checkbox span {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
    white-space: nowrap;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    margin-left: auto;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Product Detail Modal */
.product-detail-modal {
    max-width: 1100px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
}

.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-main-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.product-thumbnails .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    object-fit: cover;
}

.product-thumbnails .thumbnail:hover,
.product-thumbnails .thumbnail.active {
    border-color: var(--secondary-color);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-detail-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.product-detail-code {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-detail-title {
    font-size: 28px;
    color: var(--primary-color);
    margin: 10px 0 15px;
    line-height: 1.3;
}

.product-detail-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-detail-old-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-detail-description h3,
.product-detail-features h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-detail-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.product-detail-features ul {
    list-style: none;
    padding: 0;
}

.product-detail-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 15px;
}

.product-detail-features ul li i {
    color: var(--secondary-color);
    font-size: 14px;
}

.product-detail-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-add-cart-large,
.btn-favorite-large {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart-large,
.product-detail-actions .btn-add-cart-large {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
}

.btn-add-cart-large:hover,
.product-detail-actions .btn-add-cart-large:hover,
.btn-add-cart-large:focus,
.product-detail-actions .btn-add-cart-large:focus {
    background: #2e7d32 !important; /* Daha koyu yeşil - kesinlikle beyaz değil */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 142, 217, 0.3);
}

.btn-favorite-large {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-favorite-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 50, 56, 0.2);
}

.btn-favorite-large.active {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.btn-favorite-large.active:hover {
    background: #c0392b;
    border-color: #c0392b;
}

.modal-footer-text {
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
}

.modal-footer-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-floating-actions {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .whatsapp-float i {
        font-size: 30px;
        line-height: 60px;
    }
    
    .chatbox-toggle {
        width: 60px;
        height: 60px;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .chatbox-toggle i {
        font-size: 30px;
        line-height: 1;
    }
    
    .whatsapp-tooltip,
    .phone-tooltip,
    .email-tooltip,
    .chatbox-tooltip {
        display: none;
    }
}

/* FINAL OVERRIDE - Sepete Ekle butonları için kesin beyaz yazı rengi */
button.btn-add-cart,
button.btn-add-cart-large,
button.btn-add-cart:hover,
button.btn-add-cart:focus,
button.btn-add-cart:active,
button.btn-add-cart-large:hover,
button.btn-add-cart-large:focus,
button.btn-add-cart-large:active,
.product-buttons button.btn-add-cart,
.product-buttons button.btn-add-cart:hover,
.product-buttons button.btn-add-cart:focus,
.product-buttons button.btn-add-cart:active,
.product-detail-actions button.btn-add-cart,
.product-detail-actions button.btn-add-cart:hover,
.product-detail-actions button.btn-add-cart:focus,
.product-detail-actions button.btn-add-cart:active,
.product-detail-actions button.btn-add-cart-large,
.product-detail-actions button.btn-add-cart-large:hover,
.product-detail-actions button.btn-add-cart-large:focus,
.product-detail-actions button.btn-add-cart-large:active,
.product-card button.btn-add-cart,
.product-card button.btn-add-cart:hover,
.product-card button.btn-add-cart:focus,
.product-card button.btn-add-cart:active,
.products-slide button.btn-add-cart,
.products-slide button.btn-add-cart:hover,
.products-slide button.btn-add-cart:focus,
.products-slide button.btn-add-cart:active,
.campaign-products-carousel button.btn-add-cart,
.campaign-products-carousel button.btn-add-cart:hover,
.campaign-products-carousel button.btn-add-cart:focus,
.campaign-products-carousel button.btn-add-cart:active {
    color: #ffffff !important;
    background: var(--secondary-color) !important;
}

button.btn-add-cart:hover,
button.btn-add-cart:focus,
button.btn-add-cart:active,
button.btn-add-cart-large:hover,
button.btn-add-cart-large:focus,
button.btn-add-cart-large:active,
.product-buttons button.btn-add-cart:hover,
.product-buttons button.btn-add-cart:focus,
.product-buttons button.btn-add-cart:active,
.product-detail-actions button.btn-add-cart:hover,
.product-detail-actions button.btn-add-cart:focus,
.product-detail-actions button.btn-add-cart:active,
.product-detail-actions button.btn-add-cart-large:hover,
.product-detail-actions button.btn-add-cart-large:focus,
.product-detail-actions button.btn-add-cart-large:active,
.product-card button.btn-add-cart:hover,
.product-card button.btn-add-cart:focus,
.product-card button.btn-add-cart:active,
.products-slide button.btn-add-cart:hover,
.products-slide button.btn-add-cart:focus,
.products-slide button.btn-add-cart:active,
.campaign-products-carousel button.btn-add-cart:hover,
.campaign-products-carousel button.btn-add-cart:focus,
.campaign-products-carousel button.btn-add-cart:active {
    background: #2e7d32 !important; /* Daha koyu yeşil - kesinlikle beyaz değil */
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.breadcrumb--register {
    padding: 10px 0 12px;
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   REGISTER — Tek kart, yatay alan
   ============================================ */
.register-page,
.login-page {
    --rp-rad: 16px;
    padding: 20px 0 40px;
    background: linear-gradient(165deg, #e8eef2 0%, var(--bg-light) 45%, #f0f3f5 100%);
    min-height: 0;
}

.register-page__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.login-page__container {
    max-width: 440px;
    margin: 0 auto;
    padding: 0 16px;
}

.register-page__shell,
.login-page__shell {
    max-width: 100%;
    margin: 0 auto;
}

.register-page__card,
.login-page__card {
    background: var(--bg-white);
    border-radius: var(--rp-rad);
    box-shadow: 0 4px 24px rgba(38, 50, 56, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.register-page__head,
.login-page__head {
    text-align: center;
    padding: 28px 24px 20px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
    border-bottom: 1px solid #e8ecef;
}

.register-page__eyebrow,
.login-page__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.register-page__title,
.login-page__title {
    font-size: clamp(1.45rem, 1.1rem + 1.1vw, 1.75rem);
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 0 6px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.register-page__form,
.login-page__form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    max-width: none;
}

.register-page__fields,
.login-page__fields {
    padding: 22px 28px 8px;
}

.register-page__row {
    display: grid;
    gap: 12px 18px;
    margin-bottom: 12px;
    align-items: start;
}

.register-page__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.register-page__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.register-page__row--full {
    grid-template-columns: 1fr;
}

.register-page__form .form-group,
.login-page__form .form-group {
    margin-bottom: 0;
}

.register-page__form .form-group label,
.login-page__form .form-group label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0.01em;
    color: #445056;
}

.register-page__form .form-group input[type="text"],
.register-page__form .form-group input[type="email"],
.register-page__form .form-group input[type="tel"],
.register-page__form .form-group input[type="password"],
.login-page__form .form-group input[type="text"],
.login-page__form .form-group input[type="email"],
.login-page__form .form-group input[type="tel"],
.login-page__form .form-group input[type="password"] {
    padding: 10px 12px 10px 14px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #d8dee2;
    background: #fafbfc;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.register-page__form .form-group input:focus,
.login-page__form .form-group input:focus {
    background: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 142, 217, 0.12);
}

.login-page__toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
    padding-top: 2px;
}

.login-page__toolbar .login-page__checkbox {
    flex: 1;
    min-width: 0;
    padding: 2px 0 0 0;
}

.login-page__forgot {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.login-page__forgot:hover {
    text-decoration: underline;
    color: var(--secondary-dark);
}

.register-page__password-meter {
    margin-top: 6px;
    margin-bottom: 0;
    padding: 0;
}

.register-page__password-meter .password-strength-bar {
    height: 4px;
    border-radius: 4px;
    background: #e8ecef;
}

.register-page__password-meter .password-strength-text {
    font-size: 11px;
    margin-bottom: 4px;
}

.register-page__password-meter .password-suggestions {
    max-height: 72px;
    overflow: auto;
    font-size: 11px;
    line-height: 1.35;
    margin-top: 4px;
}

.register-page__password-meter .password-suggestions-list li {
    padding: 1px 0 1px 14px;
}

.register-page__agreements {
    margin-top: 10px;
    padding: 0 28px 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Global .checkbox-group büyük kutu; kayıt sayfasında sade satır */
.register-page__form .register-page__checkbox.checkbox-group {
    margin-bottom: 0;
    padding: 6px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.register-page__checkbox .checkbox,
.login-page__checkbox .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
}

.register-page__checkbox .checkbox input[type="checkbox"],
.login-page__checkbox .checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin: 1px 0 0 0;
    accent-color: var(--secondary-color);
    cursor: pointer;
    flex-shrink: 0;
}

.register-page__checkbox .checkbox-text,
.login-page__checkbox .checkbox-text {
    font-size: 12px;
    line-height: 1.45;
    color: #5a656b;
    flex: 1;
    min-width: 0;
}

.register-page__checkbox .checkbox-link {
    font-weight: 500;
}

.register-page__agreements .form-error {
    min-height: 0;
    margin: 2px 0 0 24px;
    font-size: 11px;
    line-height: 1.3;
}

.register-page__check-row .form-error {
    min-height: 0;
    margin-top: 4px;
}

.register-page__form .form-message,
.login-page__form .form-message {
    margin: 0 28px 12px;
}

.register-page__submit,
.login-page__submit {
    width: auto;
    min-width: 200px;
    max-width: min(100%, 280px);
    margin: 10px auto 0;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 6px;
    background: linear-gradient(180deg, #0097e0 0%, #0080c0 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 129, 192, 0.28);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.register-page__submit:hover:not(:disabled),
.login-page__submit:hover:not(:disabled) {
    box-shadow: 0 3px 12px rgba(0, 129, 192, 0.38);
    transform: translateY(-1px);
}

.register-page__submit:disabled,
.login-page__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.register-page__login-link,
.login-page__alt-link {
    text-align: center;
    margin-top: 16px;
    padding: 0 28px 24px;
}

.register-page__login-link p,
.login-page__alt-link p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.register-page__login-link a,
.login-page__alt-link a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.register-page__login-link a:hover,
.login-page__alt-link a:hover {
    text-decoration: underline;
    color: var(--secondary-dark);
}

.login-page__alt-link--back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

@media (max-width: 768px) {
    .register-page__row--3 {
        grid-template-columns: 1fr 1fr;
    }

    .register-page__row--3 .form-group:nth-child(3) {
        grid-column: 1 / -1;
    }

    .register-page__fields,
    .login-page__fields {
        padding: 18px 18px 6px;
    }

    .register-page__agreements {
        padding: 0 18px;
    }

    .register-page__form .form-message,
    .login-page__form .form-message {
        margin: 0 18px 12px;
    }

    .register-page__login-link,
    .login-page__alt-link {
        padding-left: 18px;
        padding-right: 18px;
    }

    .register-page__submit,
    .login-page__submit {
        max-width: min(100%, 260px);
        margin: 10px auto 0;
    }
}

@media (max-width: 600px) {
    .register-page__head,
    .login-page__head {
        padding: 20px 16px 16px;
    }

    .register-page__row--2,
    .register-page__row--3 {
        grid-template-columns: 1fr;
    }

    .register-page__row--3 .form-group:nth-child(3) {
        grid-column: auto;
    }

    .register-page__fields,
    .login-page__fields {
        padding: 16px 14px 4px;
    }

    .register-page__agreements {
        padding: 0 14px;
    }

    .register-page__form .form-message,
    .login-page__form .form-message {
        margin: 0 14px 12px;
    }

    .register-page__login-link,
    .login-page__alt-link {
        padding-left: 14px;
        padding-right: 14px;
    }

    .register-page__submit,
    .login-page__submit {
        max-width: min(100%, 260px);
        margin: 10px auto 0;
    }

    .login-page__checkbox .checkbox-text {
        white-space: normal;
    }
}

/* ============================================
   LOGIN & REGISTER PAGES
   ============================================ */

/* Login/Register Section */
.login-section,
.register-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
    background: var(--bg-light);
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.login-content-centered {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.register-content-centered {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.register-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.login-header,
.register-header {
    margin-bottom: 30px;
    text-align: center;
}

.login-header h1,
.register-header h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.login-header p,
.register-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Form Styles */
.login-form {
    max-width: 500px;
    margin: 0 auto;
}

.register-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.form-group label .required {
    color: #e74c3c;
    margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 142, 217, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-toggle i {
    font-size: 18px;
}

/* Form Help Text */
.form-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--text-light);
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.password-strength-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.password-strength-text {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.password-suggestions {
    font-size: 12px;
    color: var(--text-light);
}

.password-suggestions-title {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.password-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-suggestions-list li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.password-suggestions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.password-suggestions-success {
    color: #27ae60;
    font-weight: 600;
    padding: 4px 0;
}

/* Form Row (for side by side inputs) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--secondary-color);
    flex-shrink: 0;
    min-width: 20px;
}

.checkbox-text {
    color: var(--text-dark);
    flex: 1;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    font-size: 14px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.checkbox-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline;
    word-break: break-word;
    overflow-wrap: break-word;
}

.checkbox-link:hover {
    text-decoration: underline;
    color: var(--secondary-dark);
}

.checkbox a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Form Error Messages */
.form-error {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #e74c3c;
    min-height: 16px;
}

/* Form Message (Success/Error) */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

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

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

.form-message.info {
    display: block;
    background: #e8f4fc;
    color: #0b4f71;
    border: 1px solid rgba(0, 142, 217, 0.35);
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.form-footer p {
    color: var(--text-light);
    font-size: 14px;
}

.form-footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.form-footer a:hover {
    text-decoration: underline;
}


/* Button Full Width */
.btn-full {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-full:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-full i.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Forgot Link */
.forgot-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.forgot-link:hover {
    text-decoration: underline;
    color: var(--secondary-dark);
}

/* Responsive Design */
@media (max-width: 968px) {
    .login-wrapper,
    .register-wrapper {
        padding: 0 15px;
    }
    
    .login-content-centered,
    .register-content-centered {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .login-section,
    .register-section {
        padding: 40px 0;
    }
    
    .login-header h1,
    .register-header h1 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .login-content-centered,
    .register-content-centered {
        padding: 25px 15px;
        max-width: 100%;
    }
    
    .register-wrapper {
        padding: 0 10px;
    }
    
    .checkbox-group {
        padding: 12px 10px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .checkbox {
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 3px;
        flex-shrink: 0;
        min-width: 18px;
    }
    
    .checkbox-text {
        font-size: 13px;
        line-height: 1.5;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: calc(100% - 26px);
        box-sizing: border-box;
    }
    
    .checkbox-link {
        display: inline;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-header h1,
    .register-header h1 {
        font-size: 24px;
    }
    
    .login-header p,
    .register-header p {
        font-size: 14px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group input[type="password"] {
        padding: 10px 14px;
        font-size: 15px;
    }
    
    .btn-full {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .register-content-centered {
        padding: 20px 12px;
    }
    
    .checkbox-group {
        padding: 10px 8px;
        margin-bottom: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .checkbox {
        gap: 6px;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
    }
    
    .checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex-shrink: 0;
        min-width: 16px;
    }
    
    .checkbox-text {
        font-size: 12px;
        line-height: 1.5;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: calc(100% - 22px);
        box-sizing: border-box;
    }
    
    .checkbox-link {
        display: inline;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        font-size: 12px;
        max-width: 100%;
    }
    
    .password-strength {
        padding: 8px;
    }
    
    .password-suggestions {
        font-size: 11px;
    }
}

/* ============================================
   ACCOUNT PAGE (checkout / ödeme ile aynı kurumsal dil)
   ============================================ */
.account-page .payment-flow__hero {
    margin-bottom: 28px;
    text-align: center;
}

.account-page .payment-flow__hero .checkout-page__title {
    margin: 0 auto 8px;
    max-width: 36rem;
}

.account-page .payment-flow__hero .checkout-page__lead {
    margin: 0 auto 22px;
    text-align: center;
    max-width: 38rem;
}

.account-page__layout {
    display: grid;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 28px;
    align-items: flex-start;
    max-width: 1180px;
    margin: 0 auto;
}

.account-page__sidebar-card {
    padding: 24px 18px 22px;
    position: sticky;
    top: 96px;
}

.account-page__user {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.account-page__user-avatar {
    font-size: 3.25rem;
    line-height: 1;
    margin-bottom: 12px;
    color: rgba(0, 142, 217, 0.35);
}

.account-page__user-name {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.account-page__user-email {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    word-break: break-word;
}

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

.account-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
}

.account-menu-item:hover {
    background: rgba(0, 142, 217, 0.06);
    color: var(--primary-color);
}

.account-menu-item.active {
    background: linear-gradient(135deg, rgba(0, 142, 217, 0.14) 0%, rgba(0, 142, 217, 0.06) 100%);
    color: var(--primary-color);
    border-color: rgba(0, 142, 217, 0.28);
    font-weight: 600;
}

.account-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 17px;
    opacity: 0.9;
}

.account-menu-item .badge {
    /* Global .badge (absolute + sticky sidebar kartı) tüm adetleri sağ üste topluyordu */
    position: static;
    top: auto;
    right: auto;
    width: auto;
    min-width: 1.35rem;
    height: auto;
    min-height: 1.35rem;
    margin-left: auto;
    background: rgba(0, 142, 217, 0.2);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.account-menu-item.active .badge {
    background: rgba(0, 142, 217, 0.25);
    color: var(--primary-color);
}

.account-menu-item.logout-btn {
    color: #c0392b;
    margin-top: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.account-menu-item.logout-btn:hover {
    background: #fef2f2;
    color: #a30f0f;
    border-color: transparent;
}

.account-tab {
    display: none;
}

.account-tab.active {
    display: block;
}

.account-page__panel {
    overflow: hidden;
}

.account-page__panel-inner {
    padding: 28px 30px 32px;
}

.account-page__panel-head {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.account-page__panel-head .checkout-section__title {
    margin-bottom: 8px;
}

.account-page__panel-lead {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.55;
    max-width: 640px;
}

.account-page__form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.account-page__form .form-group {
    margin-bottom: 18px;
}

.account-page__form .form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.account-page__form .form-group input:disabled {
    background: var(--bg-light);
    cursor: not-allowed;
    border-radius: 10px;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    font-size: 15px;
}

.account-page__profile-actions {
    position: relative;
    z-index: 2;
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.account-page__form-note {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.account-page__orders {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.account-page__order {
    padding: 22px 24px 24px;
}

.account-page__order-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.account-page__order-num {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.account-page__order-date {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
}

.account-page__order-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    padding: 14px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.account-page__order-meta-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.account-page__order-meta-text i {
    color: var(--primary-color);
    opacity: 0.85;
}

.account-page__order-total {
    margin-left: auto;
    font-size: 1rem;
    color: var(--primary-color);
}

.account-page__order-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.account-page__order-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 14px 7px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.account-page__order-detail i {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.account-page__order-detail:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.account-page__order-detail:hover i {
    opacity: 1;
    transform: translateX(2px);
}

.account-page__order-detail:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.account-page__addresses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.account-page__favorites-wrap {
    margin-top: 6px;
}

/* Hesabım — Favoriler: tam genişlik premium liste kartları */
.account-favorites-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-favorite-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) auto;
    gap: 0 20px;
    align-items: center;
    padding: 14px 18px 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 4px 20px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.22s ease, transform 0.2s ease;
}

.account-favorite-card:hover {
    border-color: rgba(0, 142, 217, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 10px 32px rgba(0, 142, 217, 0.1);
    transform: translateY(-1px);
}

.account-favorite-card__media {
    display: block;
    width: 104px;
    height: 104px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.account-favorite-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.account-favorite-card__core {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
}

.account-favorite-card__text {
    min-width: 0;
    flex: 1 1 200px;
}

.account-favorite-card__title {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: #0f172a;
}

.account-favorite-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.account-favorite-card__title a:hover {
    color: var(--primary-color);
}

.account-favorite-card__sku {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.account-favorite-card__sku-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    opacity: 0.85;
    margin-right: 4px;
}

.account-favorite-card__pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.account-favorite-card__price-old {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.account-favorite-card__price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.account-favorite-card__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-width: 148px;
}

.account-favorite-card .btn-add-cart,
.account-favorite-card .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        background 0.45s cubic-bezier(0.33, 1, 0.68, 1),
        color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.account-favorite-card .btn-add-cart {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066a8 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 142, 217, 0.2);
}

.account-favorite-card .btn-add-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(0, 142, 217, 0.22), 0 2px 8px rgba(0, 142, 217, 0.12);
    background: linear-gradient(135deg, #0090d8 0%, #0074b8 100%);
}

.account-favorite-card .btn-add-cart:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

.account-favorite-card .btn-add-cart:active {
    transform: translateY(0);
    transition-duration: 0.12s;
}

.account-favorite-card .btn-view {
    background: #fff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.account-favorite-card .btn-view:hover {
    border-color: rgba(0, 142, 217, 0.35);
    color: #0c4a6e;
    background: linear-gradient(180deg, #fafdff 0%, #f0f9ff 100%);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.account-favorite-card .btn-view:focus-visible {
    outline: 2px solid rgba(0, 142, 217, 0.45);
    outline-offset: 2px;
}

.account-favorite-card .btn-view:active {
    transform: translateY(0.5px);
}

.account-favorite-card__btn-fav.product-favorite-btn {
    position: static;
    width: 100%;
    height: auto;
    min-height: 40px;
    margin: 2px 0 0;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid rgba(231, 76, 60, 0.28);
    background: rgba(254, 242, 242, 0.72);
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: none;
    transform: none;
    transition:
        background 0.45s cubic-bezier(0.33, 1, 0.68, 1),
        border-color 0.45s ease,
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.4s ease,
        transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Global .product-favorite-btn:hover scale — hesap favori listesinde kapat */
.account-favorite-card .product-favorite-btn.account-favorite-card__btn-fav:hover {
    transform: none;
    background: rgba(254, 226, 226, 0.88);
    border-color: rgba(220, 38, 38, 0.32);
    color: #b91c1c;
    box-shadow: 0 4px 18px rgba(220, 38, 38, 0.08);
}

.account-favorite-card .product-favorite-btn.account-favorite-card__btn-fav:focus-visible {
    outline: 2px solid rgba(220, 38, 38, 0.35);
    outline-offset: 2px;
}

.account-favorite-card .product-favorite-btn.account-favorite-card__btn-fav:active {
    box-shadow: 0 1px 6px rgba(220, 38, 38, 0.06);
}

.account-favorite-card__btn-fav.product-favorite-btn.active {
    background: rgba(254, 242, 242, 0.92);
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.34);
}

.account-favorite-card .product-favorite-btn.account-favorite-card__btn-fav.active:hover {
    background: rgba(254, 226, 226, 0.95);
    border-color: rgba(220, 38, 38, 0.38);
    color: #991b1b;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.09);
}

.account-favorite-card__btn-fav.product-favorite-btn.active i {
    color: #dc2626;
}

.account-favorite-card .product-favorite-btn.account-favorite-card__btn-fav.active:hover i {
    color: #991b1b;
}

@media (max-width: 900px) {
    .account-favorite-card {
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        grid-template-rows: auto auto;
        gap: 10px 14px;
        padding: 12px 14px;
    }

    .account-favorite-card__media {
        width: 88px;
        height: 88px;
        grid-column: 1;
        grid-row: 1;
    }

    .account-favorite-card__core {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .account-favorite-card__pricing {
        align-items: flex-start;
    }

    .account-favorite-card__actions {
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        min-width: 0;
    }

    .account-favorite-card .btn-add-cart,
    .account-favorite-card .btn-view {
        flex: 1 1 0;
        min-width: 0;
        padding: 9px 10px;
        font-size: 12px;
        min-height: 38px;
    }

    .account-favorite-card__btn-fav.product-favorite-btn {
        flex: 0 0 40px;
        width: 40px;
        min-height: 40px;
        max-height: 40px;
        margin: 0;
    }
}

/* Telefon: kompakt kart — tam genişlik yüksek görsel yok, küçük thumb + ince buton satırı */
@media (max-width: 640px) {
    .account-page__favorites-wrap {
        margin-top: 2px;
    }

    .account-favorites-list {
        gap: 8px;
    }

    .account-favorite-card {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 8px 10px;
        padding: 9px 10px 9px 8px;
        border-radius: 12px;
    }

    .account-favorite-card:hover {
        transform: none;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.95) inset,
            0 3px 14px rgba(15, 23, 42, 0.07);
    }

    .account-favorite-card__media {
        width: 64px;
        height: 64px;
        border-radius: 9px;
    }

    .account-favorite-card__core {
        gap: 4px 8px;
    }

    .account-favorite-card__text {
        flex: 1 1 auto;
    }

    .account-favorite-card__title {
        font-size: 0.92rem;
        margin: 0 0 2px;
        line-height: 1.3;
    }

    .account-favorite-card__title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    #favorites-tab .account-page__panel-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .account-favorite-card__sku {
        font-size: 10px;
        line-height: 1.3;
    }

    .account-favorite-card__pricing {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 4px 8px;
    }

    .account-favorite-card__price-old {
        font-size: 11px;
    }

    .account-favorite-card__price {
        font-size: 1.02rem;
    }

    .account-favorite-card__actions {
        padding-top: 2px;
        gap: 6px;
    }

    .account-favorite-card .btn-add-cart,
    .account-favorite-card .btn-view {
        padding: 7px 6px;
        font-size: 11px;
        min-height: 36px;
        border-radius: 8px;
        gap: 4px;
    }

    .account-favorite-card .btn-add-cart i,
    .account-favorite-card .btn-view i {
        font-size: 12px;
    }

    .account-favorite-card__btn-fav.product-favorite-btn {
        flex: 0 0 36px;
        width: 36px;
        min-height: 36px;
        max-height: 36px;
    }

    .account-favorite-card__btn-fav.product-favorite-btn i {
        font-size: 14px;
    }
}

.account-page__address-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.account-page__address-feedback {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.45;
}

.account-page__address-feedback--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.account-page__address-feedback--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.account-page__address-type-group {
    margin-bottom: 4px;
}

.account-page__address-type-legend {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.account-page__address-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.account-page__address-type-opt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    margin: 0;
    font-weight: 500;
}

.account-page__address-type-opt input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.account-page__address-invoice:not(.account-page__address-invoice--unified-tax):not(.account-page__address-invoice--split-tax) {
    margin: 6px 0 12px;
    padding-top: 4px;
    border-top: 1px solid var(--border-color);
}

.account-page__address-invoice[hidden] {
    display: none;
}

.account-page__address-invoice-corp[hidden] {
    display: none;
}

.account-page__address-invoice-corp:not(.checkout-invoice-panel) {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
}

.account-page__address-invoice-corpline {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.account-page__address-invoice-corpline i {
    margin-top: 2px;
    color: var(--text-light);
}

.account-page__address-form {
    padding: 18px 20px;
    margin-bottom: 16px;
}

/* Adres ekle / düzenle: ödeme fatura kartı (checkout-invoice-*) ile aynı dış çerçeve */
.account-page__address-form--structured.checkout-invoice-layout {
    padding: 0;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* Adres formu: dikey boşlukları sıkılaştır (ödeme fatura segmentlerinden ayrı) */
.account-page__address-form--structured .checkout-invoice-segment {
    padding: 11px 16px 12px;
}

.account-page__address-form--structured .checkout-invoice-segment--toggle {
    padding-top: 10px;
    padding-bottom: 10px;
}

.account-page__address-form--structured .checkout-invoice-segment--tax {
    padding-top: 11px;
    padding-bottom: 12px;
}

.account-page__address-form--structured .checkout-invoice-segment--save {
    padding-top: 10px;
    padding-bottom: 11px;
}

.account-page__address-form--structured .checkout-invoice-panel {
    margin-top: 0;
    padding: 11px 14px;
}

.account-page__address-form--structured .checkout-invoice-panel--corporate {
    margin-top: 6px;
}

.account-page__address-form--structured .checkout-invoice-subtitle,
.account-page__address-form--structured .account-page__address-split-title {
    margin-bottom: 7px;
}

.account-page__address-form--structured .checkout-invoice-type {
    margin-bottom: 8px;
}

.account-page__address-form--structured .checkout-invoice-type__legend {
    margin-bottom: 7px;
}

.account-page__address-form--structured .checkout-invoice-type__row {
    gap: 8px;
}

.account-page__address-form--structured .checkout-invoice-type__opt {
    padding: 9px 11px;
}

.account-page__address-form--structured .form-group {
    margin-bottom: 11px;
}

.account-page__address-form--structured .form-group label {
    margin-bottom: 5px;
}

.account-page__address-form--structured .form-row {
    gap: 10px 14px;
}

/* Hesap sayfası checkout-page sınıfında; çift satırlı etiket min-yüksekliği burada gereksiz boşluk yaratıyor */
.account-page__address-form--structured .form-row > .form-group > label {
    min-height: 0;
    line-height: 1.35;
}

.account-page__address-form--structured .account-page__address-pair-toggle {
    margin-bottom: 0;
}

/* Varsayılan + Kaydet / Vazgeç tek satır */
.account-page__address-form-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    flex-wrap: nowrap;
}

.account-page__address-form-footer-row .account-page__address-default-row--in-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    cursor: pointer;
    line-height: 1.35;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.account-page__address-form-footer-row .account-page__address-default-row--in-footer input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0;
    flex-shrink: 0;
    accent-color: var(--secondary-color);
}

.account-page__address-form-footer-row .account-page__address-form-actions {
    margin-top: 0;
    flex: 0 0 auto;
    justify-content: flex-end;
}

/* Kargo + fatura ayrı: bölüm başlıkları (ödeme fatura alt başlığı ile uyum) */
.account-page__address-split-title {
    display: block;
    margin: 0 0 12px;
    padding: 0;
    border: none;
    text-align: left;
}

/* Fatura türü sarmalayıcı: segment içinde; üst margin/border fatura türü fieldset’te */
.account-page__address-invoice--unified-tax,
.account-page__address-invoice--split-tax {
    margin: 0;
    padding: 0;
    border: 0;
}

.account-page__address-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 6px;
}

.account-page__address-default-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    margin: 2px 0 6px;
}

.account-page__address-default-row input {
    width: 16px;
    height: 16px;
}

.account-page__address {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
}

/* Kayıtlı adres kartları — ödeme fatura bloğu (checkout-invoice-layout) çerçeve dili */
.account-page__address--list {
    padding: 18px 20px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 2px 12px rgba(15, 23, 42, 0.04);
}

.account-page__address--default {
    border: 1px solid rgba(0, 142, 217, 0.35);
    background: linear-gradient(180deg, rgba(0, 142, 217, 0.04) 0%, var(--bg-white) 48%);
}

.account-page__address-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.account-page__address-head-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
}

.account-page__address-head h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

.account-page__addr-type {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.account-page__addr-type--shipping {
    background: rgba(0, 142, 217, 0.1);
    color: #0b4f6b;
    border: 1px solid rgba(0, 142, 217, 0.2);
}

.account-page__addr-type--billing {
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.account-page__addr-type--pair {
    background: rgba(22, 163, 74, 0.12);
    color: #14532d;
    border: 1px solid rgba(22, 163, 74, 0.25);
}

.account-page__address-pair-toggle {
    margin-bottom: 4px;
}

.account-page__address-pair-same {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.account-page__address-pair-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 6px 0 0;
    line-height: 1.45;
}

.account-page__address-subhead {
    font-size: 0.95rem;
    margin: 18px 0 10px;
    color: var(--text-dark);
    font-weight: 700;
    padding: 0;
    border: none;
}

.account-page__address-subhead--bill {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Beyaz kart üzerinde: global .btn-secondary şeffaf+beyaz; hesap / adres eylemlerinde koyu çerçeve */
.account-page .account-page__address-form-actions .btn.btn-secondary,
.account-page .account-page__address-actions .btn.btn-secondary {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #94a3b8;
    animation: none;
    transform: none;
}

.account-page .account-page__address-form-actions .btn.btn-secondary:hover,
.account-page .account-page__address-actions .btn.btn-secondary:hover,
.account-page .account-page__address-form-actions .btn.btn-secondary:focus-visible,
.account-page .account-page__address-actions .btn.btn-secondary:focus-visible {
    background: #e2e8f0;
    color: #0f172a;
    border-color: #64748b;
    box-shadow: none;
    transform: none;
}

.account-page__field-hint {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.8rem;
}

.account-page__address-invoice-tc:not(.checkout-invoice-panel) {
    margin: 4px 0 10px;
    padding-top: 4px;
    border-top: 1px solid var(--border-color);
}

.account-page__address-tc-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.account-page__address-tc-line i {
    margin-top: 2px;
}

.account-page__default-badge {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.account-page__address-body {
    flex: 1;
    margin-bottom: 16px;
}

.account-page__address-body p {
    margin: 0 0 10px;
    line-height: 1.75;
    color: var(--text-dark);
    font-size: 14px;
}

.account-page__address-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.account-page__address-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.account-page__empty {
    margin-top: 8px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-danger {
    background: #e74c3c;
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #c0392b;
}

@media (max-width: 968px) {
    .account-page__layout {
        grid-template-columns: 1fr;
    }

    .account-page__sidebar-card {
        position: static;
    }

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

    .account-menu-item {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }

    .account-page__order-total {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .account-page__panel-inner {
        padding: 22px 18px 26px;
    }

    .account-page__form .form-row {
        grid-template-columns: 1fr;
    }

    .account-page__order-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-page__address-toolbar {
        justify-content: stretch;
    }

    .account-page__address-toolbar .btn {
        width: 100%;
    }

    .account-page__address-form-footer-row {
        flex-wrap: wrap;
    }

    .account-page__address-form-footer-row .account-page__address-default-row--in-footer {
        flex: 1 1 auto;
    }

    .account-page__address-form-footer-row .account-page__address-form-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ============================================
   CART PAGE + CHECKOUT LAYOUT
   ============================================ */

.cart-section {
    padding: 40px 0 56px;
    min-height: calc(100vh - 200px);
    background: var(--bg-light);
}

.cart-page.cart-section {
    padding: 32px 0 48px;
}

.checkout-page.cart-section {
    padding: 32px 0 48px;
}

/* --- Ödeme sayfası (checkout) --- */
.checkout-page .checkout-page__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkout-page__hero {
    margin-bottom: 28px;
}

.checkout-page__title {
    margin: 0 0 8px;
    font-size: clamp(1.55rem, 2vw + 1rem, 2.05rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.checkout-page__lead {
    margin: 0 0 22px;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.55;
    max-width: 640px;
}

.checkout-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.checkout-steps__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
}

.checkout-steps__item--done {
    background: #ecfdf5;
    color: #047857;
    border-color: rgba(4, 120, 87, 0.2);
}

.checkout-steps__item--active {
    background: linear-gradient(135deg, rgba(0, 142, 217, 0.12) 0%, rgba(0, 142, 217, 0.06) 100%);
    color: var(--primary-color);
    border-color: rgba(0, 142, 217, 0.35);
}

.checkout-steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}

.checkout-steps__item--done .checkout-steps__num {
    background: #047857;
    color: #fff;
}

.checkout-steps__item--active .checkout-steps__num {
    background: var(--primary-color);
    color: #fff;
}

.checkout-steps__link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.checkout-steps__link:hover {
    text-decoration: underline;
}

.checkout-alert {
    margin-bottom: 22px;
    border-radius: 12px;
    padding: 14px 18px;
}

.checkout-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(280px, 380px);
    gap: 28px;
    align-items: flex-start;
}

.checkout-panel {
    background: var(--bg-white);
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 8px 36px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.checkout-form {
    max-width: none;
    margin: 0;
    padding: 28px 30px 32px;
}

.checkout-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.checkout-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

.checkout-section__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #eef6ff 0%, #e0f2fe 100%);
    color: var(--primary-color);
    font-size: 16px;
}

.checkout-section__hint {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 16px;
    line-height: 1.5;
}

.checkout-section--invoice .checkout-section__title {
    margin-bottom: 14px;
}

.checkout-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.45;
}

.checkout-checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkout-invoice-layout {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.checkout-invoice-segment {
    padding: 18px 20px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-white);
}

.checkout-invoice-segment:last-child {
    border-bottom: none;
}

.checkout-invoice-segment--toggle {
    padding-top: 16px;
    padding-bottom: 16px;
}

.checkout-invoice-segment--billing {
    background: #fafcff;
}

.checkout-invoice-segment--tax {
    padding-top: 20px;
    padding-bottom: 20px;
}

.checkout-invoice-segment--save {
    background: #f8fafc;
    padding-top: 16px;
    padding-bottom: 16px;
}

.checkout-bill-same--inner,
.checkout-save-address--inner {
    margin-bottom: 0;
}

.checkout-invoice-subtitle {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.checkout-invoice-lead {
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    max-width: 52ch;
}

.checkout-billing-fields[hidden] {
    display: none;
}

/* Segment paddingi .checkout-invoice-segment’ten gelir; padding:0 uygulama (açık adres formu kart dışında yapışık kalıyordu) */
.checkout-billing-fields {
    margin: 0;
}

.checkout-invoice-type {
    border: none;
    margin: 0 0 14px;
    padding: 0;
    min-width: 0;
}

.checkout-invoice-type__legend {
    float: none;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
    padding: 0;
}

.checkout-invoice-type__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 520px) {
    .checkout-invoice-type__row {
        grid-template-columns: 1fr;
    }
}

.checkout-invoice-type__opt {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-invoice-type__opt:hover {
    border-color: #cbd5e1;
}

.checkout-invoice-type__opt:focus-within {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(0, 142, 217, 0.14);
    background: #f0f9ff;
}

.checkout-invoice-type__opt input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.checkout-invoice-panel[hidden] {
    display: none;
}

.checkout-invoice-panel {
    margin-top: 2px;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.03);
}

.checkout-invoice-panel--corporate {
    margin-top: 10px;
}

.checkout-invoice-panel__field {
    margin-bottom: 0;
}

.checkout-field-hint {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.checkout-page .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    align-items: start;
}

/* Yan yana alanlarda etiket satır sayısı farklı olunca inputların hizası bozulmasın */
.checkout-page .form-row > .form-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.checkout-page .form-row > .form-group > label {
    line-height: 1.45;
    min-height: calc(2 * 1.45 * 1em);
}

.checkout-page .form-group {
    margin-bottom: 18px;
}

.checkout-page .checkout-section .form-group:last-child {
    margin-bottom: 0;
}

.checkout-page .form-group textarea {
    width: 100%;
    min-height: 96px;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
    box-sizing: border-box;
}

.checkout-page .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 142, 217, 0.1);
}

.checkout-notes textarea {
    min-height: 88px;
}

.checkout-pay-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.checkout-pay-card {
    cursor: pointer;
    margin: 0;
    display: block;
}

.checkout-pay-card--disabled {
    cursor: not-allowed;
}

.checkout-pay-card__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-pay-card__body {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: #fafbfc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-pay-card:hover .checkout-pay-card__body {
    border-color: rgba(0, 142, 217, 0.35);
    background: #fff;
}

.checkout-pay-card__input:focus-visible + .checkout-pay-card__body {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.checkout-pay-card__input:checked + .checkout-pay-card__body {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
    box-shadow: 0 4px 18px rgba(0, 142, 217, 0.12);
}

.checkout-pay-card--disabled .checkout-pay-card__body,
.checkout-pay-card__input:disabled + .checkout-pay-card__body {
    opacity: 0.62;
    filter: grayscale(0.2);
    background: #f3f4f6;
    border-color: rgba(15, 23, 42, 0.12);
}

.checkout-pay-card--disabled:hover .checkout-pay-card__body {
    border-color: rgba(15, 23, 42, 0.12);
    background: #f3f4f6;
}

.checkout-pay-card__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    background: #fff;
}

.checkout-pay-card__input:checked + .checkout-pay-card__body .checkout-pay-card__radio {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: inset 0 0 0 3px #fff;
}

.checkout-pay-card__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-pay-card__name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.checkout-pay-card__chip {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #92400e;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    vertical-align: middle;
}

.checkout-pay-card__hint {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.45;
}

.checkout-pay-card__glyph {
    font-size: 22px;
    color: var(--primary-color);
    opacity: 0.85;
    margin-left: auto;
    flex-shrink: 0;
}

.checkout-info-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0 0 22px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-dark);
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.checkout-info-box i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.checkout-submit.btn {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0, 142, 217, 0.35);
}

.checkout-submit.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(0, 142, 217, 0.42);
}

.checkout-aside {
    position: sticky;
    top: 96px;
}

.checkout-aside__card {
    background: var(--bg-white);
    padding: 24px 22px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 36px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-aside__title {
    margin: 0 0 16px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-color);
}

.checkout-aside__lines {
    max-height: min(52vh, 420px);
    overflow-y: auto;
    margin: 0 -4px 8px 0;
    padding-right: 4px;
}

.checkout-aside__lines::-webkit-scrollbar {
    width: 6px;
}

.checkout-aside__lines::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 6px;
}

.checkout-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-line:last-child {
    border-bottom: none;
}

.checkout-line__thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}

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

.checkout-line__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checkout-line__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
}

.checkout-line__qty {
    font-size: 12px;
    color: var(--text-light);
}

.checkout-line__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.checkout-aside__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 2px solid var(--border-color);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.checkout-aside__total strong {
    font-size: 1.35rem;
    color: var(--secondary-color);
}

.checkout-aside__back.btn,
.checkout-aside .btn-secondary {
    margin-top: 18px;
    border-radius: 10px;
    font-weight: 600;
    /* .btn-secondary globalde slider için beyaz; açık kartta okunur kontrast */
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    animation: none;
    white-space: normal;
}

.checkout-aside__back.btn:hover,
.checkout-aside .btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 142, 217, 0.28);
}

.checkout-aside__trust {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-aside__trust i {
    color: var(--primary-color);
}

/* Ödeme akışı: havale talimatı + kart ekranı */
.payment-flow .checkout-page__inner {
    max-width: 960px;
}

.payment-flow__hero {
    text-align: center;
    margin-bottom: 32px;
}

.payment-flow__hero .checkout-page__lead {
    margin-left: auto;
    margin-right: auto;
}

.payment-flow__btn--pdf {
    margin-top: 8px;
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    border-color: #d97706;
    color: #ffffff;
}

.payment-flow__btn--pdf:hover,
.payment-flow__btn--pdf:focus {
    background: linear-gradient(180deg, #fbbf24 0%, #b45309 100%);
    border-color: #b45309;
    color: #ffffff;
}

.payment-flow__badge {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-color);
    background: linear-gradient(145deg, #eef6ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(0, 142, 217, 0.25);
}

.payment-flow__badge--success {
    color: #fff;
    background: linear-gradient(145deg, #10b981 0%, #059669 100%);
    border-color: rgba(5, 150, 105, 0.4);
}

.payment-flow__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 28px;
    align-items: flex-start;
}

.payment-flow__grid--card {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 300px);
}

.payment-flow__card {
    background: var(--bg-white);
    padding: 28px 26px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 36px rgba(15, 23, 42, 0.07);
}

.payment-flow__card-title {
    margin: 0 0 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-flow__dl {
    margin: 0;
}

.payment-flow__dl > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.payment-flow__dl > div:last-child {
    border-bottom: none;
}

.payment-flow__dl dt {
    margin: 0;
    font-weight: 600;
    color: var(--text-light);
    font-size: 13px;
}

.payment-flow__dl dd {
    margin: 0;
    color: var(--text-dark);
    word-break: break-word;
}

.payment-flow__iban {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.payment-flow__fineprint {
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
}

.payment-flow__aside .checkout-aside__card {
    position: sticky;
    top: 96px;
}

.payment-flow__order-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 12px;
}

.payment-flow__muted {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 18px;
}

.payment-flow__btn {
    margin-bottom: 12px;
}

.payment-flow__amount {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 2px solid var(--border-color);
    font-size: 15px;
}

.payment-flow__amount strong {
    font-size: 1.45rem;
    color: var(--secondary-color);
}

.payment-flow__order-ref {
    margin: 0 0 22px;
    font-size: 14px;
    color: var(--text-light);
}

.payment-flow__order-ref code {
    color: var(--text-dark);
    font-weight: 600;
}

.payment-card-form .form-group {
    margin-bottom: 16px;
}

.payment-flow__pci {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.45;
    margin: 0 0 18px;
}

.payment-flow__submit {
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 700;
}

.payment-mock-3d__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.payment-mock-3d__form {
    margin: 0;
}

/* Sipariş takibi — checkout / ödeme akışı ile aynı kurumsal dil */
.order-track-page.payment-flow .checkout-page__inner {
    max-width: 960px;
}

/* Sonuç görünümü: hero başlık + açıklama metni blokta ortalansın */
.order-track-page .payment-flow__hero .checkout-page__title {
    margin-left: auto;
    margin-right: auto;
    max-width: 36rem;
    text-align: center;
}

.order-track-page .payment-flow__hero .checkout-page__lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 40rem;
}

/* Global .btn-secondary slider/hero içindir; bu sayfada tüm açık zemin üstü ikincil butonlar */
.order-track-page .btn.btn-secondary {
    background: #fff;
    color: var(--text-dark);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.order-track-page .btn.btn-secondary:hover,
.order-track-page .btn.btn-secondary:focus {
    background: #f8fafc;
    color: var(--primary-color);
    border-color: rgba(0, 142, 217, 0.45);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

.order-track-lookup__hint {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-light);
}

.order-track-form .form-group {
    margin-bottom: 18px;
}

.order-track-form .form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.order-track-form input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-track-form input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 142, 217, 0.15);
}

.order-track-summary__code {
    font-size: 1rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(0, 142, 217, 0.08);
    color: var(--primary-color);
}

.order-track-summary__total {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.order-track-summary__tracking-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(0, 142, 217, 0.1);
    border: 1px solid rgba(0, 142, 217, 0.35);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.order-track-summary__tracking-link:hover,
.order-track-summary__tracking-link:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.order-track-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.order-track-badge--order.order-track-badge--pending {
    background: #fff8e6;
    color: #92400e;
    border: 1px solid rgba(146, 64, 14, 0.2);
}

.order-track-badge--order.order-track-badge--processing {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid rgba(3, 105, 161, 0.2);
}

.order-track-badge--order.order-track-badge--shipped {
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid rgba(29, 78, 216, 0.2);
}

.order-track-badge--order.order-track-badge--delivered {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid rgba(4, 120, 87, 0.2);
}

.order-track-badge--order.order-track-badge--cancelled {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid rgba(185, 28, 28, 0.2);
}

.order-track-badge--order.order-track-badge--refunded {
    background: #f4f4f5;
    color: #52525b;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.order-track-badge--pay.order-track-badge--pay-pending {
    background: #fff8e6;
    color: #92400e;
    border: 1px solid rgba(146, 64, 14, 0.2);
}

.order-track-badge--pay.order-track-badge--pay-paid {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid rgba(4, 120, 87, 0.2);
}

.order-track-badge--pay.order-track-badge--pay-failed {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid rgba(185, 28, 28, 0.2);
}

.order-track-badge--pay.order-track-badge--pay-refunded {
    background: #f4f4f5;
    color: #52525b;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.order-track-detail__main {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.order-track-items-panel {
    padding: 28px 30px 32px;
}

.order-track-items-panel .checkout-section__title {
    margin: 0 0 20px;
}

.order-track-table-wrap {
    overflow-x: auto;
    margin: 0 -6px;
    padding: 0 6px;
}

.order-track-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.order-track-table thead th {
    text-align: left;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light);
    background: rgba(0, 142, 217, 0.06);
    border-bottom: 1px solid var(--border-color);
}

.order-track-table thead th:first-child {
    border-radius: 10px 0 0 0;
}

.order-track-table thead th:last-child {
    border-radius: 0 10px 0 0;
}

.order-track-table tbody td {
    padding: 16px 14px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    color: var(--text-dark);
}

.order-track-table tbody tr:last-child td {
    border-bottom: none;
}

.order-track-table__name {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.order-track-table__sku {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.order-track-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.order-track-page .order-track-actions .btn-full {
    flex: 1 1 200px;
}

@media (max-width: 640px) {
    .order-track-table thead {
        display: none;
    }

    .order-track-table tbody tr {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .order-track-table tbody tr:last-child {
        border-bottom: none;
    }

    .order-track-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        padding: 8px 0;
        border: none;
    }

    .order-track-table tbody td::before {
        content: attr(data-label);
        flex: 0 0 42%;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: var(--text-light);
    }

    .order-track-table tbody td:first-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-track-table tbody td:first-child::before {
        flex: none;
        width: 100%;
        margin-bottom: 6px;
    }
}

.payment-flow-flash {
    display: block;
}

@media (max-width: 968px) {
    .payment-flow__grid,
    .payment-flow__grid--card {
        grid-template-columns: 1fr;
    }

    .payment-flow__aside .checkout-aside__card {
        position: static;
    }

    .payment-flow__dl > div {
        grid-template-columns: 1fr;
    }

    .checkout-page__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .checkout-aside {
        position: static;
        order: -1;
    }

    .checkout-aside__lines {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .checkout-form {
        padding: 22px 18px 26px;
    }

    .checkout-page .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-pay-card__glyph {
        display: none;
    }
}

@media (max-width: 480px) {
    .checkout-page .checkout-page__inner {
        padding: 0 15px;
    }

    .checkout-steps__item {
        font-size: 12px;
        padding: 7px 12px;
    }
}

/* --- Sepet sayfası (cart.php) --- */
.cart-page__shell {
    max-width: 1120px;
    margin: 0 auto;
}

.cart-page__head {
    margin-bottom: 26px;
}

.cart-page__title {
    margin: 0 0 8px;
    font-size: clamp(1.55rem, 2.2vw + 1rem, 2.1rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.cart-page__subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.cart-page__empty {
    text-align: center;
    padding: 56px 28px 52px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
}

.cart-page__empty h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.cart-page__empty p {
    margin: 0 0 26px;
    color: var(--text-light);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.cart-page__empty-icon {
    font-size: 4rem;
    color: rgba(0, 142, 217, 0.2);
    margin-bottom: 18px;
}

.cart-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cart-page__cta--primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 142, 217, 0.35);
}

.cart-page__cta--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 142, 217, 0.4);
}

.cart-page__cta--accent {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    box-shadow: 0 6px 22px rgba(0, 142, 217, 0.35);
}

.cart-page__cta--accent:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 142, 217, 0.42);
}

.cart-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 28px;
    align-items: start;
}

.cart-panel {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 36px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.cart-panel__legend {
    display: grid;
    grid-template-columns: 88px minmax(160px, 1fr) 110px 148px 110px 44px;
    gap: 12px;
    align-items: center;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border-color);
}

.cart-panel__legend-product {
    grid-column: 1 / 3;
}

.cart-panel__legend-act {
    width: 44px;
}

.cart-panel__lines {
    padding: 4px 0 8px;
}

.cart-line {
    display: grid;
    grid-template-columns: 88px minmax(160px, 1fr) 110px 148px 110px 44px;
    gap: 12px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.15s ease;
}

.cart-line:last-child {
    border-bottom: none;
}

.cart-line:hover {
    background: #fafbfc;
}

.cart-line--busy {
    opacity: 0.65;
    pointer-events: none;
}

.cart-line__media {
    grid-column: 1;
    align-self: center;
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    display: block;
}

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

.cart-line__body {
    grid-column: 2;
    min-width: 0;
    padding-left: 0;
}

.cart-line__name {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.cart-line__name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.15s ease;
}

.cart-line__name a:hover {
    color: var(--primary-color);
}

.cart-line__sku {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
}

.cart-line__unit {
    grid-column: 3;
    text-align: right;
}

.cart-line__unit-old {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.cart-line__unit-now {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cart-line__unit-hint {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--text-light);
}

.cart-line__qty {
    grid-column: 4;
    display: flex;
    justify-content: center;
}

.cart-line__stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cart-line__step {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8fafc;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.cart-line__step:hover {
    background: var(--primary-color);
    color: #fff;
}

.cart-line__input {
    width: 52px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    -moz-appearance: textfield;
}

.cart-line__input::-webkit-outer-spin-button,
.cart-line__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-line__input:focus {
    outline: none;
    background: #f0f9ff;
}

.cart-line__sum {
    grid-column: 5;
    text-align: right;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-line__remove {
    grid-column: 6;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #c0392b;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.cart-line__remove:hover {
    background: #fee;
    color: #a93226;
}

.cart-page__toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.cart-page__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.cart-page__btn--ghost {
    background: #fff;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.cart-page__btn--ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cart-page__btn--danger-outline {
    background: #fff;
    color: #c0392b;
    border-color: rgba(192, 57, 43, 0.35);
}

.cart-page__btn--danger-outline:hover {
    background: #fff5f5;
    border-color: #c0392b;
}

.cart-page__aside {
    position: relative;
}

.cart-aside {
    position: sticky;
    top: 96px;
    padding: 24px 22px 22px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 36px rgba(15, 23, 42, 0.07);
}

.cart-aside__title {
    margin: 0 0 18px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-color);
}

.cart-aside__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.cart-aside__row strong {
    font-weight: 700;
    color: var(--primary-color);
}

.cart-aside__row--total {
    border-bottom: none;
    padding-top: 16px;
    margin-top: 4px;
    border-top: 2px solid var(--border-color);
    font-weight: 600;
}

.cart-aside__row--total strong {
    font-size: 1.35rem;
    color: var(--secondary-color);
}

.cart-aside__checkout {
    margin-top: 20px;
}

.cart-aside__hint {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 992px) {
    .cart-page__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .cart-page__aside {
        order: -1;
    }

    .cart-aside {
        position: static;
    }
}

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

    .cart-line {
        position: relative;
        display: grid;
        grid-template-columns: 88px 1fr;
        grid-template-rows: auto auto;
        gap: 12px 16px;
        padding: 18px 52px 18px 16px;
        align-items: start;
    }

    .cart-line__media {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .cart-line__body {
        grid-column: 2;
        grid-row: 1;
        padding-left: 0;
    }

    .cart-line__unit {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
        align-items: baseline;
    }

    .cart-line__qty {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .cart-line__sum {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 4px;
        padding-top: 12px;
        border-top: 1px dashed var(--border-color);
    }

    .cart-line__remove {
        grid-column: auto;
        position: absolute;
        top: 12px;
        right: 12px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .cart-section {
        padding: 28px 0 40px;
    }

    .cart-page__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-page__btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cart-line__media {
        width: 72px;
        height: 72px;
    }

    .cart-line__step {
        width: 36px;
        height: 36px;
    }

    .cart-line__input {
        width: 46px;
        height: 36px;
    }
}

/* --- Favoriler modalı (liste + kart; sepet sayfasına sızmaz) --- */
#favorites-modal .favorites-list {
    max-height: min(50vh, 420px);
    overflow-y: auto;
    padding: 12px 8px 12px 4px;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

#favorites-modal .favorites-list::-webkit-scrollbar {
    width: 6px;
}

#favorites-modal .favorites-list::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

#favorites-modal .favorites-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

#favorites-modal .favorite-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    border-radius: 8px;
    margin-bottom: 10px;
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

#favorites-modal .favorite-item:hover {
    background: var(--bg-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

#favorites-modal .favorite-item-image {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

#favorites-modal .favorite-item:hover .favorite-item-image {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#favorites-modal .favorite-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#favorites-modal .favorite-item-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
}

#favorites-modal .favorite-item-info h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

#favorites-modal .favorite-item-info h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

#favorites-modal .favorite-item-info h4 a:hover {
    color: var(--primary-color);
}

#favorites-modal .favorite-item-price {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

#favorites-modal .favorite-item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    flex-shrink: 0;
    min-width: 140px;
}

#favorites-modal .favorite-item-actions .btn {
    padding: 8px 15px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: 6px;
}

.quantity-controls .quantity {
    min-width: 35px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.btn-quantity {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-quantity:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 142, 217, 0.3);
}

.btn-quantity:active {
    transform: scale(0.95);
}

.cart-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cart-actions .btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

.cart-actions .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cart-actions .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 142, 217, 0.3);
}

.cart-actions .btn-checkout {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 142, 217, 0.4);
}

.cart-actions .btn-checkout:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 142, 217, 0.5);
}

.cart-actions .btn-checkout i {
    font-size: 14px;
}

.loading-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.loading-state i {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.loading-state p {
    margin: 0;
    font-size: 16px;
}

/* Responsive (favoriler + genel butonlar; sepet modalı boyutu dosya sonunda) */
@media (max-width: 768px) {
    #favorites-modal .favorite-item {
        flex-wrap: wrap;
        padding: 12px;
        gap: 12px;
        margin-bottom: 10px;
    }

    #favorites-modal .favorite-item-image {
        width: 70px;
        height: 70px;
    }

    #favorites-modal .favorite-item-info {
        max-width: 100%;
    }

    #favorites-modal .favorite-item-info h4 {
        font-size: 14px;
    }

    #favorites-modal .favorite-item-price {
        font-size: 13px;
    }

    #favorites-modal .favorite-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 10px;
        align-items: center;
        min-width: auto;
    }

    #cart-modal .cart-modal-items {
        padding: 8px 6px 8px 2px;
    }

    .quantity-controls {
        gap: 8px;
    }

    .btn-quantity {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .quantity-controls .quantity {
        min-width: 30px;
        font-size: 14px;
    }

    .cart-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .cart-actions .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #favorites-modal .favorite-item {
        padding: 10px;
        gap: 10px;
        margin-bottom: 8px;
    }

    #favorites-modal .favorite-item-image {
        width: 60px;
        height: 60px;
    }

    #favorites-modal .favorite-item-info h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    #favorites-modal .favorite-item-price {
        font-size: 12px;
    }

    #favorites-modal .favorite-item-actions .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .cart-actions .btn {
        padding: 12px 16px;
        font-size: 13px;
        box-sizing: border-box;
    }
}


/* -------------------------------------------------------------------------
   Sepet modalı – kurumsal düzen (özet çubuğu, kart satırları, sabit alt CTA)
   ------------------------------------------------------------------------- */
#cart-modal .modal {
    max-width: min(96vw, 680px);
    padding: 26px 26px 22px;
}

#cart-modal .modal-body {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#cart-modal .cart-modal-layout {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

#cart-modal .cart-modal-layout--empty {
    justify-content: center;
    min-height: 240px;
}

#cart-modal .cart-modal-loading {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-light);
    font-size: 14px;
}

#cart-modal .cart-modal-loading i {
    display: block;
    font-size: 28px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

#cart-modal .cart-modal-toolbar {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

#cart-modal .cart-modal-toolbar strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

#cart-modal .cart-modal-toolbar-meta {
    font-size: 13px;
    color: var(--text-light);
}

#cart-modal .cart-modal-items {
    flex: 1 1 auto;
    min-height: 120px;
    max-height: min(42vh, 360px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#cart-modal .cart-modal-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px 16px;
    padding: 14px 16px;
    background: #fafbfc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#cart-modal .cart-modal-row:hover {
    border-color: rgba(0, 142, 217, 0.35);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

#cart-modal .cart-modal-thumb {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
    display: block;
    text-decoration: none;
}

#cart-modal .cart-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#cart-modal .cart-modal-main {
    flex: 1 1 200px;
    min-width: 0;
}

#cart-modal .cart-modal-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

#cart-modal .cart-modal-title a {
    color: var(--text-dark);
    text-decoration: none;
}

#cart-modal .cart-modal-title a:hover {
    color: var(--primary-color);
}

#cart-modal .cart-modal-sku {
    margin: 0 0 8px;
    font-size: 12px;
    color: var(--text-light);
}

#cart-modal .cart-modal-sku-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 4px;
}

#cart-modal .cart-modal-unit {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--text-light);
}

#cart-modal .cart-modal-unit-label {
    margin-right: 6px;
}

#cart-modal .cart-modal-unit strong {
    color: var(--text-dark);
    font-weight: 600;
}

#cart-modal .cart-modal-qty-row {
    margin-top: 2px;
}

#cart-modal .cart-modal-qty.quantity-controls {
    margin-bottom: 0;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 2px;
    gap: 0;
    display: inline-flex;
    align-items: center;
}

#cart-modal .cart-modal-qty .btn-quantity {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 6px;
    font-size: 18px;
    line-height: 1;
}

#cart-modal .cart-modal-qty .btn-quantity:hover {
    background: var(--bg-light);
    transform: none;
    color: var(--primary-color);
}

#cart-modal .cart-modal-qty .quantity {
    min-width: 40px;
    font-size: 14px;
}

#cart-modal .cart-modal-aside {
    flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 100px;
}

#cart-modal .cart-modal-line-total {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

#cart-modal .cart-modal-line-total strong {
    font-weight: 700;
}

#cart-modal .cart-modal-remove {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: #94a3b8;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#cart-modal .cart-modal-remove:hover {
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.35);
    background: #fff5f5;
}

#cart-modal .cart-modal-footer {
    flex-shrink: 0;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
    border-radius: 0 0 4px 4px;
}

#cart-modal .cart-modal-totals {
    margin-bottom: 16px;
}

#cart-modal .cart-modal-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

#cart-modal .cart-modal-total-line strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

#cart-modal .cart-modal-total-line--grand {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
}

#cart-modal .cart-modal-total-line--grand strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

#cart-modal .cart-modal-cta {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 12px;
    padding-top: 4px;
}

#cart-modal .cart-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
        box-shadow 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
    text-align: center;
}

#cart-modal .cart-modal-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

#cart-modal .cart-modal-btn i {
    font-size: 15px;
    opacity: 0.92;
}

#cart-modal .cart-modal-btn--ghost {
    color: #334155;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

#cart-modal .cart-modal-btn--ghost:hover {
    color: var(--primary-color);
    border-color: rgba(0, 142, 217, 0.45);
    background: #f8fafc;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
    transform: translateY(-1px);
}

#cart-modal .cart-modal-btn--ghost:active {
    transform: translateY(0);
}

#cart-modal .cart-modal-btn--accent {
    color: #ffffff;
    background: linear-gradient(165deg, var(--primary-color) 0%, #0077b5 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 142, 217, 0.38);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

#cart-modal .cart-modal-btn--accent:hover {
    filter: brightness(1.06);
    box-shadow: 0 6px 22px rgba(0, 142, 217, 0.48);
    transform: translateY(-1px);
}

#cart-modal .cart-modal-btn--accent:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

#cart-modal .cart-modal-btn--accent i {
    font-size: 14px;
    margin-left: 2px;
}

#cart-modal .cart-modal-btn--wide {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

#cart-modal .cart-modal-empty-state {
    padding: 32px 20px 28px;
    max-width: 400px;
    margin: 0 auto;
}

#cart-modal .cart-modal-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(145deg, #eef6ff 0%, #f0fdf4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

#cart-modal .cart-modal-empty-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

#cart-modal .cart-modal-empty-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

#cart-modal .cart-modal-empty-state p {
    margin-bottom: 20px;
    line-height: 1.55;
}

@media (max-width: 520px) {
    #cart-modal .cart-modal-aside {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-left: 0;
        padding-top: 4px;
        border-top: 1px dashed var(--border-color);
    }

    #cart-modal .cart-modal-items {
        max-height: min(48vh, 320px);
    }

    #cart-modal .cart-modal-cta {
        grid-template-columns: 1fr;
    }

    #cart-modal .cart-modal-btn--accent {
        order: -1;
    }
}

/* Sepet modalı: küçük ekranlarda sabit üst bloktan sonra uygulanır */
@media (max-width: 992px) {
    #cart-modal .modal {
        max-width: min(700px, 96vw);
        padding: 24px;
    }
}

@media (max-width: 768px) {
    #cart-modal .modal {
        max-width: calc(100vw - 32px);
        padding: 20px;
    }
}

@media (max-width: 480px) {
    #cart-modal .modal {
        max-width: calc(100vw - 24px);
        margin: 12px;
        padding: 16px;
    }
}

/* Campaign listing page: keep card width balanced */
.campaign-products-page .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.campaign-products-page .products-grid .product-card {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}

.campaign-products-page {
    padding: 36px 0 56px;
    background: var(--bg-light);
}

.brand-page-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.brand-page-head__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 48px;
}
.brand-page-head__logo img {
    max-height: 64px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}
.brand-page-head__text {
    min-width: 0;
}
.brand-page-title {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.brand-page-website {
    margin: 0;
    font-size: 14px;
}
.brand-page-website a {
    color: #0284c7;
    text-decoration: none;
}
.brand-page-website a:hover {
    text-decoration: underline;
}

/* Marka sayfası — boş ürün listesi */
.no-products--brand {
    margin: 8px 0 8px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.no-products--brand .no-products__inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 40px 28px 36px;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.no-products--brand .no-products__visual {
    margin-bottom: 16px;
}

.no-products--brand .no-products__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(0, 142, 217, 0.12) 0%, rgba(15, 23, 42, 0.06) 100%);
    border: 1px solid rgba(0, 142, 217, 0.15);
    color: #0284c7;
    font-size: 2.25rem;
}

.no-products--brand .no-products__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 12px 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.no-products--brand .no-products__mark img {
    max-height: 56px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.no-products--brand .no-products__eyebrow {
    margin: 0 0 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

.no-products--brand .no-products__title {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.no-products--brand .no-products__lead {
    margin: 0 0 24px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
}

.no-products--brand .no-products__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.no-products--brand .no-products__actions .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

.brand-products-page .no-products--brand .no-products__actions .btn-secondary {
    background: #fff;
    color: #0369a1;
    border: 2px solid #0ea5e9;
    animation: none;
}

.brand-products-page .no-products--brand .no-products__actions .btn-secondary:hover {
    background: #f0f9ff;
    color: #0c4a6e;
    border-color: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.no-products--brand .no-products__link-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
}

.no-products--brand .no-products__link-text:hover {
    color: #0284c7;
    background: rgba(2, 132, 199, 0.06);
}

@media (min-width: 480px) {
    .no-products--brand .no-products__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .no-products--brand .no-products__actions .btn {
        min-width: 200px;
    }

    .no-products--brand .no-products__link-text {
        flex-basis: 100%;
    }
}

.campaign-page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 18px;
}

.campaign-page-header h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 30px;
}

.campaign-page-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.campaign-page-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 22px;
    padding: 12px 0 0;
}

.campaign-page-count {
    margin: 0 auto 0 0;
    color: var(--text-light);
    font-size: 14px;
}

.campaign-page-sort-label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
}

.campaign-page-sort-select {
    min-width: 220px;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
}

/* ——— Ürün katalog (tüm ürünler) ——— */
.products-catalog {
    position: relative;
    padding: 20px 0 48px;
    background: var(--bg-light);
}

.products-catalog__container {
    max-width: 1280px;
}

.products-catalog__layout {
    display: block;
    position: relative;
}

.products-catalog__filter-open {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 0 0 14px;
    padding: 10px 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #475569;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.products-catalog__filter-open:hover,
.products-catalog__filter-open:focus-visible {
    border-color: rgba(0, 142, 217, 0.35);
    color: #0284c7;
    background: #f8fafc;
    outline: none;
}

/* Mobil: filtre paneli + backdrop */
body.products-catalog--filters-open {
    overflow: hidden;
}

body.products-catalog--filters-open .products-catalog::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(15, 23, 42, 0.45);
    pointer-events: auto;
    animation: productsCatalogFadeIn 0.2s ease;
}

@keyframes productsCatalogFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.products-catalog__sidebar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
    width: min(100%, 380px);
    max-width: 100%;
    height: 100%;
    max-height: 100vh;
    background: #fff;
    box-shadow: 8px 0 32px rgba(15, 23, 42, 0.08);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
}

body.products-catalog--filters-open .products-catalog__sidebar-wrap {
    transform: translateX(0);
}

.products-catalog__sidebar {
    flex: 0 0 auto;
    overflow: visible;
    padding: 18px 16px 24px;
    touch-action: pan-y;
}

.products-filters {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.products-filters__section {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.products-filters__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.products-filters__title {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 8px;
}

.products-filters__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.products-filters__input {
    width: 100%;
    padding: 9px 12px;
    font-size: 0.875rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.products-filters__input::placeholder {
    color: #94a3b8;
}

.products-filters__input:focus {
    outline: none;
    background: #fff;
    border-color: rgba(0, 142, 217, 0.45);
    box-shadow: 0 0 0 1px rgba(0, 142, 217, 0.2);
}

.products-filters__hint {
    margin: 0 0 8px;
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.5;
}

.products-filters__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.products-filters__mini span {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 3px;
}

.products-filters__checks {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: none;
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
}

.products-filters__checks--brands {
    max-height: none;
}

.products-filters__checks li {
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.products-filters__checks li:last-child {
    border-bottom: 0;
}

.products-filters__label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.4;
    cursor: pointer;
    color: #334155;
    transition: color 0.15s ease;
}

.products-filters__label:hover {
    color: #0f172a;
}

.products-filters__label input[type="checkbox"] {
    margin-top: 0.2em;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    accent-color: #0284c7;
    flex-shrink: 0;
}

.products-filters__section--toggles {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.products-filters__label--switch {
    padding: 5px 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.products-filters__label--switch:last-of-type {
    border-bottom: 0;
}

.products-filters__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 2px;
    padding-top: 2px;
}

.products-filters__actions .btn {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    min-height: 40px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.products-filters__submit.btn-primary {
    background: #0f172a;
    border: none;
    color: #fff;
    box-shadow: none;
}

.products-filters__submit.btn-primary:hover,
.products-filters__submit.btn-primary:focus-visible,
.products-filters__submit.btn-primary:active {
    background: #1e293b;
    color: #fff;
    transform: none;
    box-shadow: none;
}

/* Temizle: Uygula ile aynı dolgu / radius / tipografi; tamamlayıcı nötr ton */
.products-filters__reset.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    background: #e2e8f0;
    color: #1e293b;
    border: none;
    font-weight: 500;
    box-shadow: none;
}

.products-filters__reset.btn-secondary:visited {
    color: #1e293b;
}

.products-filters__reset.btn-secondary:hover,
.products-filters__reset.btn-secondary:focus-visible,
.products-filters__reset.btn-secondary:active {
    text-decoration: none;
    background: #cbd5e1;
    color: #0f172a;
    transform: none;
    box-shadow: none;
}

.products-catalog__main {
    min-width: 0;
    background: transparent;
}

.products-catalog__toolbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.products-catalog__count {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.products-catalog__count strong {
    color: var(--text-dark);
    font-weight: 700;
}

.products-catalog__sort {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.products-catalog__sort-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.products-catalog__sort-select {
    flex: 1 1 200px;
    min-width: 0;
    padding: 10px 12px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    color: var(--text-dark);
}

.products-catalog__grid {
    margin-top: 0;
}

/* Katalog + kategori: aynı grid ve kompakt kart (ürünler sayfası ile hizalı) */
.product-listing-cards .products-grid,
.products-catalog__grid.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px 14px;
    margin-bottom: 28px;
    width: 100%;
    align-items: stretch;
}

.product-listing-cards .products-grid .product-card,
.products-catalog__grid .product-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 12px;
}

.product-listing-cards .product-image {
    padding-top: 78%;
}

.product-listing-cards .product-info {
    padding: 8px 10px 10px;
    gap: 4px;
}

.product-listing-cards .product-name {
    font-size: 13px;
    min-height: 36px;
    max-height: 36px;
    line-height: 1.35;
}

.product-listing-cards .product-price .price {
    font-size: 16px;
}

.product-listing-cards .product-price .price-old {
    font-size: 12px;
}

.product-listing-cards .product-buttons {
    margin-top: 4px;
    gap: 4px;
}

.product-listing-cards .btn-add-cart,
.product-listing-cards .btn-view {
    padding: 7px 10px;
    font-size: 12px;
    border-radius: 8px;
}

.product-listing-cards .product-favorite-btn {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
}

.product-listing-cards .product-favorite-btn i {
    font-size: 15px;
}

.product-listing-cards .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1200px) {
    .product-listing-cards .products-grid,
    .products-catalog__grid.products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 18px;
    }
}

@media (min-width: 1400px) {
    .product-listing-cards .products-grid,
    .products-catalog__grid.products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .product-listing-cards .products-grid,
    .products-catalog__grid.products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 8px;
    }

    .product-listing-cards .product-name {
        font-size: 12px;
        min-height: 34px;
        max-height: 34px;
    }

    .product-listing-cards .product-price .price {
        font-size: 14px;
    }

    .product-listing-cards .btn-add-cart,
    .product-listing-cards .btn-view {
        padding: 6px 8px;
        font-size: 11px;
    }
}

.products-catalog__empty {
    text-align: center;
    padding: 40px 20px 32px;
    background: #fff;
    border: 1px dashed var(--border-color);
    border-radius: 16px;
}

.products-catalog__empty-icon {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.products-catalog__empty-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.products-catalog__empty-text {
    margin: 0 0 20px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 600px) {
    .products-catalog__toolbar {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    /*
     * Main içindeki sticky filtre, DOM sırasında header’dan sonra geldiği için
     * aynı z-örneklemde üstte kalıyordu; header’ı bu breakpoint’te üstte tut.
     * (Mobil filtre/overlay 1000–1002: eski değerler korunur.)
     */
    .header {
        z-index: 1020;
    }

    body.products-catalog--filters-open {
        overflow: auto;
    }

    .products-catalog {
        padding: 24px 0 56px;
    }

    .products-catalog__filter-open {
        display: none;
    }

    .products-catalog__layout {
        display: grid;
        grid-template-columns: minmax(0, 272px) 1fr;
        gap: 40px;
        align-items: start;
    }

    .products-catalog__sidebar-wrap {
        position: static;
        width: auto;
        height: auto;
        max-height: none;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        overflow: visible;
    }

    .products-catalog__sidebar {
        position: sticky;
        top: 88px;
        align-self: start;
        z-index: 0;
        max-height: none;
        overflow: visible;
        padding: 0;
    }

    .products-filters {
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 12px;
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
        padding: 16px 16px 18px;
    }

    body.products-catalog--filters-open .products-catalog::before {
        display: none;
    }
}

