/* ============================================
   R's Reform Shop - Ana Stil Dosyası
   ============================================ */

:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --accent: #74c69d;
    --accent-light: #d8f3dc;
    --danger: #e63946;
    --warning: #f4a261;
    --success: #2d6a4f;
    --text: #1a1a2e;
    --text-light: #6c757d;
    --border: #e0e0e0;
    --bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: all 0.25s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 15px;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ TOP BAR ============ */
.top-bar {
    background: #0f0f0f;
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.top-bar-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.95;
}
.top-bar-check { color: #4ade80; font-size: 11px; }
.top-bar-right { display: flex; gap: 15px; }
.top-bar-service {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    opacity: 0.9;
    text-decoration: none;
    transition: var(--transition);
}
.top-bar-service:hover { opacity: 1; color: #fff; }

/* Yuvarlak bayraklar */
.flag-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.3);
    background-size: cover;
    background-position: center;
}
/* Hollanda bayrağı — CSS ile çizim */
.flag-circle-nl {
    background:
        linear-gradient(
            to bottom,
            #AE1C28 0%, #AE1C28 33.3%,
            #FFFFFF 33.3%, #FFFFFF 66.6%,
            #21468B 66.6%, #21468B 100%
        );
}
/* İngiltere bayrağı — CSS ile çizim */
.flag-circle-en {
    background: #012169;
    position: relative;
    background-image:
        linear-gradient(to bottom right, transparent 42%, #fff 42%, #fff 58%, transparent 58%),
        linear-gradient(to bottom left,  transparent 42%, #fff 42%, #fff 58%, transparent 58%),
        linear-gradient(to bottom right, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
        linear-gradient(to bottom left,  transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
        linear-gradient(to bottom, #012169 0%, #012169 40%, #fff 40%, #fff 60%, #012169 60%),
        linear-gradient(to right,  #012169 0%, #012169 40%, #fff 40%, #fff 60%, #012169 60%),
        linear-gradient(to bottom, #012169 0%, #012169 43%, #C8102E 43%, #C8102E 57%, #012169 57%),
        linear-gradient(to right,  #012169 0%, #012169 43%, #C8102E 43%, #C8102E 57%, #012169 57%);
}

/* Dil seçici */
.lang-switcher {
    position: relative;
}
.lang-active {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: var(--font);
    opacity: 0.9;
    transition: var(--transition);
}
.lang-active:hover { opacity: 1; background: rgba(255,255,255,0.1); }
.lang-arrow {
    font-size: 9px;
    transition: transform 0.2s ease;
}
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    overflow: hidden;
    min-width: 140px;
    z-index: 9999;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--text);
    transition: var(--transition);
    text-decoration: none;
}
.lang-option:hover { background: var(--accent-light); color: var(--primary); }
.lang-option-active { font-weight: 600; color: var(--primary); }

/* ============ HEADER ============ */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 900;
    padding: 12px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.logo-svg {
    height: 42px;
    width: auto;
    display: block;
}
/* Eski logo stilleri (footer için) */
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 18px; font-weight: 700; color: var(--primary-dark); line-height: 1.1; }
.logo-sub { font-size: 11px; color: var(--text-light); font-weight: 400; }

/* Arama */
.search-bar {
    width: 260px;
    position: relative;
    flex-shrink: 0;
}
.search-bar form {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
}
.search-bar form:focus-within {
    border-color: #1D9DAA;
    box-shadow: 0 0 0 3px rgba(29,157,170,0.1);
}
.search-bar input {
    flex: 1;
    padding: 9px 14px;
    border: none;
    outline: none;
    font-size: 13px;
    font-family: var(--font);
    background: transparent;
    color: var(--text);
}
.search-bar input::placeholder { color: #aaa; }
.search-bar button {
    padding: 9px 13px;
    background: transparent;
    color: #1D9DAA;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    border-left: 1.5px solid var(--border);
}
.search-bar button:hover { background: var(--accent-light); }
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    z-index: 999;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}
.search-suggestions.show { display: block; }
.suggestion-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}
.suggestion-item:hover { background: var(--accent-light); }
.suggestion-item i { color: var(--primary); }

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-left: auto;
}
.header-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    color: var(--text);
    position: relative;
    background: none;
    border: none;
    font-family: var(--font);
    text-decoration: none;
    white-space: nowrap;
}
.header-action-btn:hover { background: var(--accent-light); color: var(--primary); }

/* "Inloggen" butonu — ikon + yazı yan yana */
.header-action-login i { font-size: 16px; color: var(--text); }
.header-action-login span { font-size: 13px; font-weight: 500; }
.header-action-login:hover i,
.header-action-login:hover span { color: #1D9DAA; }

/* Account dropdown */
.account-dropdown-wrap {
    position: relative;
}
.account-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.13);
    min-width: 230px;
    z-index: 9999;
    padding: 18px;
    border: 1px solid var(--border);
}
.account-dropdown-wrap:hover .account-dropdown { display: block; }
.account-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 22px;
    width: 13px;
    height: 13px;
    background: #fff;
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
}
.account-dropdown-list {
    list-style: none;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.account-dropdown-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
}
.account-dropdown-list li i {
    color: #1D9DAA;
    font-size: 12px;
}
.account-dropdown-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.account-dropdown-actions .btn {
    padding: 9px 20px;
    font-size: 13px;
    background: #1D9DAA;
    border-color: #1D9DAA;
    border-radius: 6px;
    flex-shrink: 0;
}
.account-dropdown-actions .btn:hover { background: #178899; border-color: #178899; }
.account-dropdown-actions span {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}
.account-dropdown-actions span a { color: var(--text); text-decoration: none; }
.account-dropdown-actions span a:hover { color: #1D9DAA; }

/* Wishlist dropdown */
.wishlist-dropdown { min-width: 260px; }
.wishlist-empty-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.wishlist-empty-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}
.wishlist-empty-text i { color: var(--text); font-size: 13px; }

/* Sadece ikon butonları */
.header-action-icon {
    padding: 8px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
    color: #333 !important;
}
.header-action-icon i { font-size: 18px; color: #333 !important; }
.header-action-icon:hover { background: var(--accent-light); }
.header-action-icon:hover i { color: #1D9DAA !important; }

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #1D9DAA;
    color: #fff;
    font-size: 10px;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 3px;
}

/* Mobil sol grup */
.mobile-left {
    display: none;
    align-items: center;
    gap: 4px;
}
.mobile-menu-btn,
.mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    font-size: 18px;
    border-radius: 6px;
    transition: background .2s;
}
.mobile-menu-btn:hover,
.mobile-search-btn:hover { background: #f0f2f5; }

/* Mobil arama çubuğu */
.mobile-search-bar {
    display: none;
    padding: 10px 0 8px;
    border-top: 1px solid #eee;
}
.mobile-search-bar.open { display: block; }
.mobile-search-bar form {
    display: flex;
    border: 1.5px solid #1D9DAA;
    border-radius: 50px;
    overflow: hidden;
}
.mobile-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 9px 16px;
    font-size: 14px;
    font-family: var(--font);
}
.mobile-search-bar button {
    padding: 0 16px;
    background: none;
    border: none;
    color: #1D9DAA;
    font-size: 15px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ NAVIGATION ============ */
.main-nav {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 68px;
    z-index: 800;
}
.nav-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.nav-item {
    position: relative;
}
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 13px 16px;
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-item > a:hover { color: #1D9DAA; }
.nav-item > a:hover,
.nav-item.has-sub:hover > a,
.nav-item.has-mega:hover > a {
    color: #1D9DAA;
    border-bottom: 2px solid #1D9DAA;
}
.nav-item.has-sub > a::after { content: ''; display: none; }

/* --- 1. seviye dropdown (nav-sub) --- */
.nav-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    list-style: none;
    padding: 6px 0;
}
.nav-item.has-sub:hover > .nav-sub { display: block; }

.nav-sub > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 16px;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-sub > li > a:hover { background: #f5f5f5; color: #1D9DAA; }

/* Ok işareti: alt-alt menüsü olan öğelerde */
.nav-sub > li.has-subsub > a::after {
    content: '›';
    font-size: 16px;
    margin-left: 10px;
    color: #aaa;
}

/* --- 2. seviye dropdown (nav-subsub) --- */
.nav-subsub {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 200px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 1001;
    list-style: none;
    padding: 6px 0;
}
.nav-sub > li.has-subsub:hover > .nav-subsub { display: block; }

.nav-subsub li a {
    display: block;
    padding: 9px 16px;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-subsub li a:hover { background: #f5f5f5; color: #1D9DAA; }

/* "Toon meer" link */
.nav-more a {
    color: #1D9DAA !important;
    font-weight: 500;
}

/* --- Mega dropdown --- */
.nav-item.has-mega { position: relative; }

.nav-mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-top: 2px solid #1D9DAA;
    border-bottom: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    min-width: 480px;
    padding: 22px 26px 22px 26px;
}
.nav-item.has-mega:hover .nav-mega { display: block; }

.nav-mega-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0 40px;
}

.nav-mega-col {
    display: flex;
    flex-direction: column;
}

/* Kalın kategori başlığı */
.nav-mega-heading {
    font-size: 14px;
    font-weight: 700;
    color: #222 !important;
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
    padding-bottom: 0;
}
.nav-mega-heading:hover { color: #1D9DAA !important; }

/* Alt linkler */
.nav-mega-col a:not(.nav-mega-heading):not(.nav-mega-more) {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    text-decoration: none;
    padding: 3px 0;
    display: block;
    line-height: 1.6;
    transition: color 0.15s;
}
.nav-mega-col a:not(.nav-mega-heading):not(.nav-mega-more):hover {
    color: #1D9DAA;
}

/* Toon meer */
.nav-mega-more {
    font-size: 14px;
    font-weight: 600;
    color: #1D9DAA !important;
    text-decoration: none;
    padding: 4px 0;
    display: block;
    transition: opacity 0.15s;
}
.nav-mega-more:hover { opacity: 0.8; }

/* Eski stiller (artık kullanılmıyor ama bırakıyoruz) */
.dropdown-menu { display: none; }
.mega-dropdown { display: none; }

/* ============ MOBILE MENU ============ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,0.13);
    display: flex;
    flex-direction: column;
}
.mobile-menu.open { left: 0; }

/* Başlık */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}
.mm-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}
.mm-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mm-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}
.mm-lang .lang-active {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 6px;
}
.mm-lang .lang-arrow { font-size: 10px; color: #555; }
.mm-lang .lang-dropdown {
    top: 100%;
    right: 0;
    left: auto;
    min-width: 140px;
}

/* Hızlı linkler */
.mm-quick-links {
    padding: 14px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #eee;
}
.mm-quick-links a {
    font-size: 14px;
    color: #1D9DAA;
    text-decoration: none;
    font-weight: 500;
}
.mm-quick-links a:hover { text-decoration: underline; }

/* Kategoriler başlığı */
.mm-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 14px 20px 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kategori listesi */
.mobile-nav-list { padding: 0; }
.mobile-nav-item { border-bottom: 1px solid #f0f0f0; }
.mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-nav-link {
    flex: 1;
    display: block;
    padding: 14px 20px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.mobile-nav-link:hover { color: #1D9DAA; }
.mobile-expand-btn {
    background: none;
    border: none;
    padding: 14px 20px;
    color: #999;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    line-height: 1;
}
.mobile-expand-btn.open {
    transform: rotate(90deg);
    color: #1D9DAA;
}
.mobile-sub-list {
    display: none;
    background: #f9fafb;
    border-top: 1px solid #eee;
}
.mobile-sub-list.open { display: block; }
.mobile-sub-list li a {
    display: block;
    padding: 11px 20px 11px 32px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}
.mobile-sub-list li:last-child a { border-bottom: none; }
.mobile-sub-list li a:hover { color: #1D9DAA; background: #f0f8f9; }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1050;
}
.mobile-overlay.show { display: block; }

/* ============ CART SIDEBAR (drawer) ============ */
.cart-sidebar {
    --cart-drawer-accent: #20a1a1;
    position: fixed;
    top: 0;
    right: -440px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0,0,0,0.12);
    font-family: var(--font);
}
.cart-sidebar.open { right: 0; }
.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    color: #111;
    flex-shrink: 0;
}
.cart-sidebar-header h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}
.cart-sidebar-close {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    color: #888;
    font-size: 18px;
    line-height: 1;
    transition: color 0.2s;
}
.cart-sidebar-close:hover { color: #333; }
.cart-sidebar-body { flex: 1; overflow-y: auto; padding: 0 16px 16px; }
.cart-empty { text-align: center; padding: 50px 20px; color: var(--text-light); }
.cart-empty i { font-size: 50px; opacity: 0.3; margin-bottom: 15px; }
.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.cart-item-img {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button {
    width: 26px; height: 26px;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.cart-item-qty button:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-item-qty span { font-weight: 600; font-size: 14px; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--text-light); font-size: 13px; transition: var(--transition); align-self: flex-start; }
.cart-item-remove:hover { color: var(--danger); }

/* Drawer line items (nieuw) */
.cart-drawer-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}
.cart-drawer-item:last-of-type { border-bottom: none; }
.cdi-img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #eee;
}
.cdi-img img { width: 100%; height: 100%; object-fit: cover; }
.cdi-main { flex: 1; min-width: 0; }
.cdi-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.cdi-info { flex: 1; min-width: 0; }
.cdi-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    line-height: 1.35;
}
.cdi-meta {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px;
}
.cdi-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.cdi-remove,
.cdi-wish {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cdi-remove { color: #c62828; }
.cdi-remove:hover { color: #b71c1c; }
.cdi-wish { color: #9e9e9e; text-decoration: none; }
.cdi-wish:hover { color: #757575; text-decoration: underline; }
.cdi-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    flex-shrink: 0;
}

.cart-sidebar-footer {
    padding: 16px 20px 22px;
    border-top: 1px solid #e8e8e8;
    background: #fff;
    flex-shrink: 0;
}
.btn-cart-checkout {
    background: var(--cart-drawer-accent, #20a1a1) !important;
    border-color: var(--cart-drawer-accent, #20a1a1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 14px 20px !important;
    text-align: center;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
}
.btn-cart-checkout:hover {
    filter: brightness(0.92);
    color: #fff !important;
}
.cart-free-ship strong { color: var(--cart-drawer-accent, #20a1a1); font-weight: 700; }
.cart-drawer-footnote {
    margin: 12px 0 0;
    text-align: center;
    font-size: 13px;
    color: var(--cart-drawer-accent, #20a1a1);
    line-height: 1.4;
}
.shipping-notice {
    background: var(--accent-light);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}
.cart-totals { margin-bottom: 15px; }
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.cart-total-row.total {
    font-weight: 700;
    font-size: 16px;
    border-bottom: none;
    padding-top: 10px;
    color: var(--primary-dark);
}
.cart-total-row small { font-size: 11px; font-weight: 400; color: var(--text-light); }
.payment-icon {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
}
.cart-overlay.show { display: block; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(45,106,79,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-full { width: 100%; margin-bottom: 8px; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-icon { padding: 10px; border-radius: 50%; width: 40px; height: 40px; }

/* ============ HERO BANNER ============ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: #fff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.hero-section h1 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* Hero section (eski sayfa) buton stilleri */
.hero-section .hero-actions .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.hero-section .hero-actions .btn-primary:hover { background: var(--accent-light); color: var(--primary-dark); }
.hero-section .hero-actions .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-section .hero-actions .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* Slider buton stilleri */
.slide-text .hero-actions .btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    font-weight: 700;
}
.slide-text .hero-actions .btn-primary:hover {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}
.slide-text .hero-actions .btn-outline {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
.slide-text .hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
}
.hero-stat span { font-size: 26px; font-weight: 800; display: block; }
.hero-stat small { font-size: 12px; opacity: 0.75; }

/* ============ HERO SLIDER ============ */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
    line-height: 1;
}
.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}
.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

/* Banner görselli slide */
.slide-banner {
    min-height: 480px;
    display: flex;
    align-items: center;
}
.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 50%,
        rgba(0,0,0,0.05) 100%
    );
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}
.slide-text {
    max-width: 580px;
    color: #fff;
}
.slide-text h1 {
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.slide-text p {
    font-size: 15px;
    opacity: 0.92;
    margin-bottom: 26px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Gradient slide */
.slide-gradient {
    min-height: 480px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
}
.slide-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
}

/* Koyu slide */
.slide-dark {
    min-height: 480px;
    background: linear-gradient(135deg, #0a1628 0%, #1b2d4f 60%, #0d3349 100%);
    display: flex;
    align-items: center;
}
.slide-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(116,198,157,0.12) 0%, transparent 60%);
}

/* Slider butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}
.slider-btn:hover {
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-50%) scale(1.05);
}
.slider-prev { left: 18px; }
.slider-next { right: 18px; }

/* Nokta indikatörler */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.25);
}

/* Mobil */
@media (max-width: 768px) {
    .slide-banner,
    .slide-gradient,
    .slide-dark { min-height: 320px; }
    .slide-content { padding: 36px 16px; }
    .slider-btn { width: 36px; height: 36px; font-size: 13px; }
    .hero-stats { display: none; }
}
@media (max-width: 480px) {
    .slide-banner,
    .slide-gradient,
    .slide-dark { min-height: 260px; }
    .slide-text h1 { font-size: 22px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}

/* ============ SITE BANNER ============ */
.site-banner {
    width: 100%;
    max-width: 100%;
    padding: 20px clamp(12px, 5vw, 180px);
    line-height: 0;
    box-sizing: border-box;
}
.site-banner-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #e8f5e9;
}
.site-banner-img,
.site-banner picture {
    display: block;
    width: 100%;
}
.site-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .site-banner {
        padding: 16px clamp(10px, 3vw, 48px);
    }
}

/* Mobilde banner tam genişlik + doğal yükseklik (kırpma yok) */
@media (max-width: 768px) {
    .site-banner {
        padding: 8px 0;
    }
    .site-banner-link {
        border-radius: 0;
        overflow: visible;
    }
    .site-banner-link picture {
        width: 100%;
        display: block;
    }
    .site-banner img {
        width: 100%;
        height: auto;
        max-height: none;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .site-banner {
        padding: 6px 0;
    }
}

/* ============ TRUST BADGES ============ */
.trust-section {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
}
.trust-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 13px; font-weight: 600; }
.trust-text small { font-size: 12px; color: var(--text-light); }

/* ============ SECTION HEADERS ============ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}
.section-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    position: relative;
    padding-bottom: 10px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.section-title p { color: var(--text-light); font-size: 14px; margin-top: 6px; }
.section-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.section-link:hover { color: var(--primary-dark); }

/* ============ YENİ ÜRÜN KARTI (pc) ============ */
.pc {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.pc:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.pc-img {
    position: relative;
    background: #f7f9fc;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pc-img a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.pc-img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s;
}
.pc:hover .pc-img img { transform: scale(1.04); }

.pc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1D9DAA;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.pc-body {
    padding: 14px 14px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pc-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
.pc-name a { color: #222; text-decoration: none; }
.pc-name a:hover { color: #1D9DAA; }

.pc-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pc-stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.pc-vergelijk {
    font-size: 12px;
    color: #999;
    text-decoration: none;
}
.pc-vergelijk:hover { color: #1D9DAA; }

.pc-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-stock {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.pc-instock  { font-size: 13px; font-weight: 600; color: #1D9DAA; }
.pc-outstock { font-size: 13px; font-weight: 600; color: #e63946; }
.pc-stock small { font-size: 11px; color: #aaa; }

.pc-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.pc-old {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
}
.pc-final {
    font-size: 17px;
    font-weight: 700;
    color: #222;
}
.pc-price small { font-size: 11px; color: #aaa; width: 100%; margin-top: -2px; }

.pc-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 14px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

/* Miktar seçici — yatay (+  sayı  -) */
.pc-qty {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    height: 38px;
}
.pc-qty button {
    background: #f5f7f8;
    border: none;
    width: 28px;
    height: 100%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: #444;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pc-qty button:hover {
    background: #1D9DAA;
    color: #fff;
}
.pc-qty input {
    border: none;
    border-left: 1.5px solid #ddd;
    border-right: 1.5px solid #ddd;
    text-align: center;
    width: 36px;
    height: 100%;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    outline: none;
    -moz-appearance: textfield;
}
.pc-qty input::-webkit-outer-spin-button,
.pc-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pc-btn {
    flex: 1;
    background: #1D9DAA;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 12px;
    height: 38px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.pc-btn:hover {
    background: #178899;
    transform: translateY(-1px);
}
.pc-btn:active { transform: translateY(0); }
.pc-btn:disabled { background: #c8cdd0; cursor: not-allowed; transform: none; }

/* ============ PRODUCT CARDS ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.product-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.product-card-img {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg);
    overflow: hidden;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.badge-sale { background: var(--danger); color: #fff; }
.badge-new { background: var(--primary); color: #fff; }
.badge-hot { background: var(--warning); color: #fff; }
.product-card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}
.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(0);
}
.product-card-actions button {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
}
.product-card-actions button:hover { background: var(--primary); color: #fff; }
.product-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-category-tag {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    flex: 1;
}
.product-name a:hover { color: var(--primary); }
.product-short-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.price { font-size: 18px; font-weight: 700; color: var(--primary); }
.price-original { font-size: 13px; color: var(--text-light); text-decoration: line-through; margin-right: 6px; }
.price-sale { color: var(--danger); }
.stock-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 50px;
    font-weight: 600;
}
.stock-in { background: #d4edda; color: #155724; }
.stock-out { background: #f8d7da; color: #721c24; }
.product-card-footer {
    padding: 10px 15px;
    border-top: 1px solid var(--border);
}
.add-to-cart-btn {
    width: 100%;
    padding: 9px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--transition);
    font-family: var(--font);
}
.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45,106,79,0.3);
}
.add-to-cart-btn.added { background: var(--success); }
.quantity-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.qty-btn {
    width: 30px; height: 30px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 5px;
    font-size: 14px;
    font-family: var(--font);
}

/* ============ SECTION LAYOUT ============ */
.section { padding: 50px 0; }
.section-alt { background: #fff; }

/* ============ CATEGORY CARDS ============ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}
.category-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    color: var(--text);
}
.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--primary);
}
.category-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}
.category-card:hover .category-card-icon { background: var(--primary); color: #fff; }
.category-card h3 { font-size: 13px; font-weight: 600; }
.category-card span { font-size: 11px; color: var(--text-light); }

/* ============ BLOG CARDS ============ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-img {
    aspect-ratio: 16/9;
    background: var(--accent-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 40px;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 18px; }
.blog-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}
.read-more:hover { gap: 8px; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    background: #fff;
}
.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li::after { content: '/'; color: var(--border); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============ PAGE LAYOUT ============ */
.page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    padding: 30px 0;
}
.sidebar { flex-shrink: 0; }
.sidebar-widget {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 20px;
}
.sidebar-widget h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-light);
    color: var(--primary-dark);
}
.filter-list { display: flex; flex-direction: column; gap: 6px; }
.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.filter-item:hover { background: var(--accent-light); }
.filter-item input[type="checkbox"] { accent-color: var(--primary); }
.price-range { display: flex; flex-direction: column; gap: 10px; }
.price-range input[type="range"] { accent-color: var(--primary); width: 100%; }
.price-display { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; }

/* ============ PRODUCT DETAIL ============ */
.product-detail { padding: 30px 0; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.product-gallery { position: sticky; top: 120px; }
.gallery-main {
    aspect-ratio: 1;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.gallery-thumb {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.product-info .price-block { margin: 15px 0; }
.price-block .price { font-size: 28px; }
.price-block .price-original { font-size: 16px; }
.product-stock { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; font-size: 14px; }
.product-short-text { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.product-actions { display: flex; gap: 12px; align-items: center; margin-top: 20px; }
.product-tabs { margin-top: 40px; }
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 25px; }
.tab-btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    cursor: pointer;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 15px; line-height: 1.8; color: var(--text-light); }

/* ============ CART PAGE ============ */
.cart-page { padding: 30px 0; }
.cart-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}
.cart-table { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.cart-table table { width: 100%; border-collapse: collapse; }
.cart-table th {
    background: var(--bg);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cart-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-prod-info { display: flex; align-items: center; gap: 15px; }
.cart-prod-img { width: 60px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; }
.cart-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-summary {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    position: sticky;
    top: 120px;
}
.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.summary-row.total {
    border-bottom: none;
    font-size: 18px;
    font-weight: 700;
    padding-top: 15px;
    color: var(--primary-dark);
}
.coupon-form {
    display: flex;
    gap: 8px;
    margin: 15px 0;
}
.coupon-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-family: var(--font);
    outline: none;
    transition: var(--transition);
}
.coupon-form input:focus { border-color: var(--primary); }

/* ============ FORMS ============ */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    transition: var(--transition);
    background: #fff;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }
.form-control.error { border-color: var(--danger); }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ============ ACCOUNT PAGE ============ */
.account-page { padding: 40px 0; }
.auth-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.auth-box {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 35px;
}
.auth-box h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.auth-box p { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }
.divider { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-size: 13px; margin: 16px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ============ CHECKOUT ============ */
.checkout-page { padding: 30px 0; }
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}
.checkout-section {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 20px;
}
.checkout-section h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-light);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
}
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.payment-option:hover { border-color: var(--primary); background: var(--accent-light); }
.payment-option.selected { border-color: var(--primary); background: var(--accent-light); }
.payment-option i { font-size: 22px; color: var(--primary); }
.payment-option span { font-size: 14px; font-weight: 600; }
.order-summary-box {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    position: sticky;
    top: 120px;
}

/* ============ CHECKOUT V2 (winkelwagen-stijl) ============ */
.checkout-v2-wrap {
    --checkout-teal: #20a1a1;
    padding-bottom: 50px;
}
.checkout-v2-errors {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 20px;
    max-width: 100%;
}
.checkout-v2-errors ul { margin: 0; padding-left: 20px; }
.checkout-v2-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 8px;
}
.checkout-v2-back {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--checkout-teal);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}
.checkout-v2-back:hover { text-decoration: underline; color: #1a8a8a; }
.checkout-v2-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    text-align: center;
}
.btn-checkout-v2-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    background: var(--checkout-teal);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: filter 0.2s;
}
.btn-checkout-v2-cta:hover { filter: brightness(0.93); }
.btn-checkout-v2-wide {
    width: 100%;
    padding: 14px 20px;
    margin-top: 8px;
}
.checkout-v2-lines {
    border-top: 1px solid #e8e8e8;
    margin-bottom: 0;
}
.checkout-v2-line {
    display: grid;
    grid-template-columns: 72px minmax(140px, 1.4fr) minmax(100px, 0.9fr) 130px 88px minmax(72px, auto);
    gap: 14px 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}
.checkout-v2-line-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #eee;
}
.checkout-v2-line-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-v2-line-name {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
}
.checkout-v2-line-sub {
    margin: 0;
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}
.checkout-v2-stock {
    font-size: 13px;
    font-weight: 600;
    color: var(--checkout-teal);
}
.checkout-v2-stock.is-out { color: #c62828; }
.checkout-v2-qty-lbl {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    font-weight: 500;
}
.checkout-v2-qty-input {
    width: 72px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font);
}
.checkout-v2-remove {
    background: none;
    border: none;
    padding: 0;
    color: #c62828;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
}
.checkout-v2-remove:hover { color: #b71c1c; }
.checkout-v2-line-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-align: right;
}
.checkout-v2-panel {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px);
    gap: 28px;
    align-items: stretch;
    background: #f4f4f5;
    border-radius: 10px;
    padding: 24px 28px;
    margin-top: 8px;
}
.checkout-v2-panel-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    min-height: 100%;
}
.checkout-v2-discount {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.checkout-v2-discount summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout-v2-discount summary::-webkit-details-marker { display: none; }
.checkout-v2-discount summary i { font-size: 12px; color: #888; transition: transform 0.2s; }
.checkout-v2-discount[open] summary i { transform: rotate(180deg); }
.checkout-v2-discount-inner {
    padding: 0 16px 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.checkout-v2-discount-inner .form-control { flex: 1; min-width: 140px; border-radius: 8px; }
.checkout-v2-shopmore {
    font-size: 14px;
    color: var(--checkout-teal);
    text-decoration: underline;
    font-weight: 600;
    align-self: flex-end;
}
.checkout-v2-shopmore:hover { color: #1a8a8a; }
.checkout-v2-panel-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.checkout-v2-sumrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid #e0e0e0;
}
.checkout-v2-sumrow-total {
    font-weight: 700;
    font-size: 17px;
    border-bottom: none;
    padding-top: 6px;
    color: #111;
}
.checkout-v2-sumrow-total small {
    font-size: 12px;
    font-weight: 400;
    color: #777;
}
.checkout-v2-free strong { color: var(--checkout-teal); font-weight: 700; }
.checkout-v2-payrow {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
    padding-right: 4px;
}
.checkout-v2-payicons {
    display: flex;
    gap: 18px;
    font-size: 22px;
    color: #888;
}
.checkout-v2-related { margin-top: 42px; }
.checkout-v2-related-h {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #111;
}
.checkout-v2-gegevens { margin-top: 48px; padding-top: 8px; border-top: 1px solid #eee; }
.checkout-v2-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 22px;
    color: #111;
}
.checkout-v2-formgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}
.checkout-section--plain {
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 0;
}
.checkout-section--plain h3 {
    border-bottom-color: #eee;
    color: #222;
}
.checkout-section--full { grid-column: 1 / -1; }
.checkout-v2-gegevens .payment-option.selected {
    border-color: var(--checkout-teal);
    background: rgba(32, 161, 161, 0.08);
}
.checkout-v2-gegevens .payment-option:hover { border-color: var(--checkout-teal); }
.checkout-v2-final {
    margin-top: 28px;
    max-width: 420px;
}
.checkout-v2-trust {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
}
.checkout-success-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 32px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.checkout-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(32, 161, 161, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--checkout-teal, #20a1a1);
}
.checkout-success-card h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.checkout-success-lead { font-size: 16px; color: var(--text); margin-bottom: 12px; }
.checkout-success-note { font-size: 14px; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }
.checkout-success-card .btn-lg { padding: 14px 28px; }

@media (max-width: 900px) {
    .checkout-v2-line {
        display: grid;
        grid-template-columns: 56px 1fr auto;
        grid-template-rows: auto auto auto auto;
        gap: 10px 12px;
        align-items: start;
    }
    .checkout-v2-line-img { grid-column: 1; grid-row: 1 / 3; width: 56px; height: 56px; }
    .checkout-v2-line-main { grid-column: 2 / 4; grid-row: 1; }
    .checkout-v2-line-price { grid-column: 3; grid-row: 2; text-align: right; align-self: center; }
    .checkout-v2-line-status { grid-column: 2; grid-row: 2; align-self: center; }
    .checkout-v2-line-qty { grid-column: 2; grid-row: 3; }
    .checkout-v2-line-remove { grid-column: 2; grid-row: 4; }
}
@media (max-width: 768px) {
    .checkout-v2-head {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .checkout-v2-back { justify-self: center; order: 2; }
    .checkout-v2-title { order: 1; font-size: 24px; }
    .btn-checkout-v2-cta:first-of-type { justify-self: center; order: 3; width: 100%; max-width: 320px; }
    .checkout-v2-panel {
        grid-template-columns: 1fr;
    }
    .checkout-v2-formgrid { grid-template-columns: 1fr; }
}

/* ============ CHECKOUT SPLIT (R's Reform) ============ */
.checkout-split-page {
    --split-blue: #2563eb;
    padding: 28px 0 56px;
}
.checkout-split-errors {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 20px;
    max-width: 100%;
}
.checkout-split-errors ul { margin: 0; padding-left: 20px; }
.checkout-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 40px;
    align-items: start;
}
.checkout-split-main {
    background: #fff;
    padding: 8px 12px 40px 0;
    max-width: 640px;
}
.checkout-split-back {
    display: inline-block;
    color: var(--split-blue);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 20px;
}
.checkout-split-back:hover { text-decoration: underline; }
.checkout-split-brand {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    margin: 0 0 28px;
    color: #111;
    letter-spacing: -0.02em;
}
.checkout-split-step { margin-bottom: 8px; padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; }
.checkout-split-step--pay { border-bottom: none; padding-top: 8px; }
.checkout-split-step--submit { border-bottom: none; padding-top: 16px; margin-top: 8px; }
.checkout-split-step-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #111;
}
.checkout-split-input {
    width: 100%;
    max-width: 420px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font);
    margin-bottom: 10px;
    box-sizing: border-box;
}
.checkout-split-input:focus {
    outline: none;
    border-color: var(--split-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.checkout-split-hint {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 0 18px;
}
.checkout-split-hint a,
.checkout-split-link {
    color: var(--split-blue);
    font-weight: 500;
    text-decoration: none;
}
.checkout-split-hint a:hover,
.checkout-split-link:hover { text-decoration: underline; }
.checkout-split-step-actions { display: flex; justify-content: flex-end; margin-top: 8px; }
.btn-checkout-split-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    background: #111;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    text-decoration: none;
    transition: background 0.2s;
}
.btn-checkout-split-black:hover { background: #333; color: #fff !important; }
.checkout-split-details {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}
.checkout-split-details-sum {
    list-style: none;
    cursor: pointer;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    user-select: none;
}
.checkout-split-details-sum::-webkit-details-marker { display: none; }
.checkout-split-details-body {
    padding: 0 0 20px;
}
.checkout-split-muted { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.5; }
.checkout-split-radio-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    cursor: pointer;
}
.checkout-split-terms {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    margin: 20px 0 16px;
    cursor: pointer;
}
.checkout-split-terms input { margin-top: 3px; flex-shrink: 0; }
.btn-checkout-split-final {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    background: #9ca3af;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.2s, filter 0.2s;
}
.btn-checkout-split-final:hover { filter: brightness(1.05); color: #fff !important; }
.checkout-split-payment { margin-bottom: 8px; }
.checkout-split-payment .payment-option small { display: block; color: var(--text-light); font-size: 12px; margin-top: 2px; }
.checkout-split-payment .payment-option.selected {
    border-color: var(--split-blue);
    background: rgba(37, 99, 235, 0.06);
}
.checkout-split-aside {
    background: #f3f4f6;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}
.checkout-split-aside-inner { padding: 22px 22px 26px; }
.checkout-split-aside-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #111;
}
.checkout-split-lines { list-style: none; margin: 0; padding: 0; }
.checkout-split-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}
.checkout-split-line:last-child { border-bottom: none; }
.checkout-split-line-img {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
}
.checkout-split-line-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-split-line-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.checkout-split-line-name { font-size: 14px; font-weight: 600; color: #111; line-height: 1.35; }
.checkout-split-line-sub { font-size: 12px; color: #6b7280; line-height: 1.3; }
.checkout-split-line-qty { font-size: 12px; color: #9ca3af; }
.checkout-split-line-price { font-size: 14px; font-weight: 700; color: #111; white-space: nowrap; }
.checkout-split-divider { height: 1px; background: #e5e7eb; margin: 14px 0; }
.checkout-split-sumline {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    color: #374151;
}
.checkout-split-tbd { color: var(--split-blue); font-weight: 500; }
.checkout-split-discount { margin: 10px 0 6px; }
.checkout-split-discount summary {
    list-style: none;
    cursor: pointer;
    color: var(--split-blue);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
}
.checkout-split-discount summary::-webkit-details-marker { display: none; }
.checkout-split-discount summary i { font-size: 11px; margin-left: 4px; }
.checkout-split-discount-body { display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 8px; }
.checkout-split-totalrow {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
}
.checkout-split-totalrow strong { font-size: 22px; font-weight: 700; }
.checkout-split-notes-lbl {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-top: 16px;
    margin-bottom: 8px;
}
.checkout-split-notes {
    width: 100%;
    min-height: 100px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    resize: vertical;
    box-sizing: border-box;
    background: #fff;
}
.checkout-split-notes:focus {
    outline: none;
    border-color: var(--split-blue);
}
.checkout-split-layout--thanks .checkout-split-main--thanks { max-width: none; }
.checkout-split-thanks-box { text-align: left; padding: 8px 0 24px; }
.checkout-split-thanks-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: var(--split-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}
.checkout-split-thanks-title { font-size: 24px; font-weight: 700; margin: 0 0 10px; }
.checkout-split-thanks-lead { font-size: 15px; color: #4b5563; margin: 0 0 6px; }
.checkout-split-thanks-num { font-size: 18px; margin: 0 0 14px; }
.checkout-split-thanks-note { font-size: 14px; color: #6b7280; line-height: 1.6; margin: 0 0 22px; }
.checkout-split-aside--thanks {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: static;
}
.checkout-split-aside--thanks .checkout-split-aside-title { margin-bottom: 10px; }
.checkout-split-aside-muted { font-size: 14px; color: #6b7280; line-height: 1.5; margin: 0; }

@media (max-width: 960px) {
    .checkout-split-layout {
        grid-template-columns: 1fr;
    }
    .checkout-split-aside { position: static; order: -1; }
}

/* ============ BLOG PAGE ============ */
.blog-page { padding: 40px 0; }
.blog-detail { max-width: 800px; }
.blog-detail h1 { font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.blog-content { font-size: 15px; line-height: 1.9; color: var(--text-light); }
.blog-content h2, .blog-content h3 { color: var(--text); margin: 24px 0 12px; }
.blog-content p { margin-bottom: 16px; }

/* ============ FLASH MESSAGE ============ */
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    box-shadow: var(--shadow-hover);
    animation: slideIn 0.3s ease;
}
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-info { background: var(--accent-light); color: var(--primary-dark); border: 1px solid var(--accent); }
.flash-message button { margin-left: auto; color: inherit; opacity: 0.7; }
@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============ PAGINATION ============ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 30px 0;
    flex-wrap: wrap;
}
.page-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
}
.page-link:hover, .page-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============ COMPARE BAR ============ */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 0;
    z-index: 600;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.compare-bar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

/* ============ ADMIN ============ */
.admin-layout {
    display: flex;
    min-height: 100vh;
}
.admin-layout-v2 .admin-sidebar {
    width: 260px;
}
.admin-sidebar {
    width: 250px;
    background: var(--primary-dark);
    color: #fff;
    flex-shrink: 0;
    padding: 20px 0;
}
.admin-sidebar-logo { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 10px; }
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.1); color: #fff; }
.admin-nav a i { width: 18px; }
.admin-content { flex: 1; padding: 30px; background: var(--bg); }
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.admin-header h1 { font-size: 24px; font-weight: 700; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stat-card-info strong { display: block; font-size: 28px; font-weight: 800; }
.stat-card-info span { font-size: 13px; color: var(--text-light); }
.stat-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}
.icon-green { background: var(--primary); }
.icon-blue { background: #3a86ff; }
.icon-orange { background: var(--warning); }
.icon-red { background: var(--danger); }
.admin-table { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.admin-table table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.admin-table th { background: var(--bg); font-weight: 600; color: var(--text-light); text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--accent-light); }
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-processing { background: #cff4fc; color: #055160; }
.status-shipped { background: var(--accent-light); color: var(--primary-dark); }
.status-delivered { background: #d1e7dd; color: #0f5132; }
.status-cancelled { background: #f8d7da; color: #842029; }

/* ============ EMPTY STATE ============ */
.empty-state {
    text-align: center;
    padding: 70px 20px;
    color: var(--text-light);
}
.empty-state i { font-size: 60px; opacity: 0.25; margin-bottom: 20px; color: var(--primary); }
.empty-state h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.empty-state p { font-size: 14px; margin-bottom: 24px; }

/* ============ LOADING SPINNER ============ */
.spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--accent-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .page-layout { grid-template-columns: 1fr; }
    .page-layout .sidebar { order: 2; }
    .page-layout .products-col { order: 1; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .cart-grid { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .auth-container { grid-template-columns: 1fr; max-width: 450px; }
    .product-gallery { position: static; }
}

@media (max-width: 768px) {
    .search-bar { display: none; }
    .mobile-left { display: flex; }
    .main-nav { display: none; }
    .header-action-btn span { display: none; }
    .hide-mobile { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .top-bar { display: none; }
    .hero-section { padding: 40px 0; }
    .hero-stats { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .cart-sidebar { width: 100%; right: -100%; }
    .section { padding: 30px 0; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .mega-dropdown { width: 100%; }
    .footer-grid-new { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: 24px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ FOOTER ============ */
.main-footer {
    background: #fff;
    color: #333;
    margin-top: 0;
    border-top: 1px solid #e8ecee;
}
.footer-top { padding: 48px 0 40px; }
.footer-grid-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 40px;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: 0;
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: color .2s;
    line-height: 1.4;
}
.footer-col ul li a:hover { color: #1D9DAA; }
.footer-col address {
    font-style: normal;
    font-size: 13px;
    color: #555;
    line-height: 1.8;
}
.footer-col address p { margin-bottom: 4px; }
.footer-col address strong { color: #1a1a1a; }
.footer-col address a { color: #1D9DAA; text-decoration: none; }
.footer-col address a:hover { text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid #e8ecee;
    padding: 14px 0;
    background: #fff;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
}
.footer-bottom-inner a { color: #888; }
.payment-methods { display: flex; gap: 8px; align-items: center; }
.payment-bank {
    display: inline-block;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .footer-grid-new { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid-new { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* Blog Section */
.blog-section { background: #fff; }
.blog-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.blog-section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}
.blog-all-link {
    color: #1D9DAA;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.blog-all-link:hover { text-decoration: underline; }

/* Featured blog */
.blog-featured {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    background: #fff;
    border: 1px solid #e8ecee;
    border-radius: 4px;
    overflow: hidden;
}
.blog-featured-img {
    flex: 0 0 55%;
    max-width: 55%;
}
.blog-featured-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.blog-featured-body {
    flex: 1;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.blog-date {
    font-size: 12px;
    color: #888;
}
.blog-featured-body h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.blog-featured-body h3 a {
    color: #1a1a1a;
    text-decoration: none;
}
.blog-featured-body h3 a:hover { color: #1D9DAA; }
.blog-lees {
    color: #1D9DAA;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.blog-lees:hover { text-decoration: underline; }

/* Alt 3 kart */
.blog-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-small-card {
    border: 1px solid #e8ecee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}
.blog-small-img {
    display: block;
    height: 180px;
    overflow: hidden;
}
.blog-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.blog-small-card:hover .blog-small-img img { transform: scale(1.04); }
.blog-small-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.blog-small-body h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
.blog-small-body h4 a {
    color: #1a1a1a;
    text-decoration: none;
}
.blog-small-body h4 a:hover { color: #1D9DAA; }

@media (max-width: 900px) {
    .blog-featured { flex-direction: column; }
    .blog-featured-img { flex: none; max-width: 100%; }
    .blog-featured-img img { height: 220px; }
    .blog-cards-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .blog-cards-row { grid-template-columns: 1fr; }
}

/* Kracht Section */
.kracht-section {
    background: #f5f7f8;
    padding: 0 0 0 0;
    border-top: 1px solid #e8ecee;
    border-bottom: 1px solid #e8ecee;
    overflow: hidden;
}
.kracht-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.kracht-img {
    flex-shrink: 0;
    width: 220px;
}
.kracht-img img {
    display: block;
    width: 220px;
    height: auto;
    object-fit: contain;
    vertical-align: bottom;
}
.kracht-text {
    flex: 1;
}
.kracht-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.kracht-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.kracht-social {
    flex-shrink: 0;
    min-width: 220px;
}
.kracht-social h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.kracht-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.kracht-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.kracht-icons a:hover {
    border-color: #1D9DAA;
    color: #1D9DAA;
}
.kracht-newsletter {
    font-size: 13px;
    color: #1D9DAA;
    text-decoration: underline;
    font-weight: 500;
}
.kracht-newsletter:hover {
    color: #157a85;
}
@media (max-width: 900px) {
    .kracht-inner { flex-wrap: wrap; gap: 30px; padding: 30px 0; }
    .kracht-img { width: 160px; }
    .kracht-img img { width: 160px; }
}
@media (max-width: 600px) {
    .kracht-inner { flex-direction: column; align-items: flex-start; padding: 24px 0; }
    .kracht-img { display: none; }
}
