/* ============================
   ZEN MÜHENDİSLİK - HVAC E-Ticaret
   Ana Stil Dosyası
   ============================ */

:root {
    --primary: #1a5276;
    --primary-dark: #0e3450;
    --primary-light: #2980b9;
    --secondary: #e67e22;
    --secondary-dark: #d35400;
    --accent: #27ae60;
    --dark: #1a1a2e;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-gray: #eef1f5;
    --border: #dee2e6;
    --white: #fff;
    --shadow: 0 2px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all .25s ease;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--dark);
    color: #ccc;
    font-size: .8rem;
    padding: 6px 0;
}
.top-bar a { color: #bbb; margin-right: 15px; }
.top-bar a:hover { color: var(--white); }
.top-bar a i { margin-right: 4px; }
.top-bar-right a { margin-left: 15px; margin-right: 0; }

/* Dil Seçici */
.lang-switcher { display: inline-block; position: relative; margin-left: 8px; }
.lang-current { cursor: pointer; display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 4px; transition: var(--transition); }
.lang-current:hover { background: rgba(255,255,255,.12); }
.lang-dropdown { display: none; position: absolute; right: 0; top: calc(100% + 8px); background: var(--white); border-radius: 8px; box-shadow: var(--shadow-lg); min-width: 150px; z-index: 9999; overflow: hidden; border: 1px solid var(--border); }
.lang-dropdown.show { display: block; }
.lang-option { display: flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--text) !important; font-size: .85rem; transition: var(--transition); text-decoration: none !important; }
.lang-option:hover { background: var(--bg-light); color: var(--primary) !important; }
.lang-option.active { background: var(--primary); color: var(--white) !important; font-weight: 600; }

/* RTL Desteği */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .top-bar a { margin-right: 0; margin-left: 15px; }
html[dir="rtl"] .top-bar-right a { margin-right: 15px; margin-left: 0; }
html[dir="rtl"] .top-bar a i { margin-right: 0; margin-left: 4px; }
html[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: 8px; }
html[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
html[dir="rtl"] .header-actions { flex-direction: row-reverse; }
html[dir="rtl"] .search-form .input-group .btn { border-radius: 8px 0 0 8px !important; }
html[dir="rtl"] .search-form .input-group .form-control { border-radius: 0 8px 8px 0 !important; }
html[dir="rtl"] .footer-widget ul { padding-right: 0; }
html[dir="rtl"] .mega-cat-arrow { margin-left: 0; margin-right: auto; transform: rotate(180deg); }
html[dir="rtl"] .offcanvas { direction: rtl; }

/* ========== MAIN HEADER ========== */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    z-index: 1030;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
}
.logo:hover { color: var(--primary); }
.logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}
.logo-text {
    display: flex; flex-direction: column;
    line-height: 1.1;
    font-size: 1.1rem;
}
.logo-text small { font-size: .65rem; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }

/* Search */
.search-form .form-control {
    border-radius: var(--radius) 0 0 var(--radius);
    border-color: var(--border);
    padding: 10px 16px;
}
.search-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,82,118,.1);
}
.search-form .btn { border-radius: 0 var(--radius) var(--radius) 0; padding: 10px 20px; }

/* Header Actions */
.header-actions {
    display: flex; align-items: center; justify-content: flex-end; gap: 12px;
}
.header-action {
    display: flex; flex-direction: column; align-items: center;
    color: var(--text); font-size: .72rem; gap: 2px;
    text-decoration: none; position: relative;
}
.header-action i { font-size: 1.2rem; }
.header-action:hover { color: var(--primary); }
.header-action.whatsapp-btn { color: #25d366; }
.header-action.whatsapp-btn:hover { color: #128c7e; }

.cart-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--secondary); color: var(--white);
    border-radius: 50%; width: 20px; height: 20px;
    font-size: .7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

.mobile-menu-btn {
    font-size: 1.4rem; color: var(--text); padding: 4px 8px;
    border: none; background: none;
}

/* ========== NAVIGATION ========== */
.main-nav {
    background: var(--primary);
}
.nav-menu {
    display: flex; list-style: none; margin: 0; padding: 0;
}
.nav-menu .nav-item { position: relative; }
.nav-menu .nav-link {
    display: block; padding: 12px 16px;
    color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 500;
    white-space: nowrap;
}
.nav-menu .nav-link:hover, .nav-menu .nav-item:hover > .nav-link {
    background: rgba(255,255,255,.1); color: var(--white);
}
.all-categories-btn {
    background: rgba(0,0,0,.2) !important;
    cursor: pointer;
}

/* Dropdown (individual category nav items) */
.nav-menu .dropdown-menu {
    position: absolute; top: 100%; left: 0;
    min-width: 220px; background: var(--white);
    border: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg); padding: 8px 0;
    display: none; z-index: 1050;
}
.nav-menu .nav-item:hover > .dropdown-menu { display: block; }
.nav-menu .dropdown-menu a {
    display: block; padding: 8px 16px;
    color: var(--text); font-size: .85rem;
}
.nav-menu .dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }

/* ========== MEGA MENU ========== */
.mega-dropdown { position: static; }

.mega-menu-panel {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; z-index: 1060;
    background: var(--white);
    border-top: 3px solid var(--primary);
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    min-height: 400px;
}
.mega-dropdown:hover > .mega-menu-panel,
.mega-menu-panel.show {
    display: flex;
}

/* Sol Panel - Ana Kategoriler */
.mega-menu-left {
    width: 280px;
    min-width: 280px;
    background: #f8f9fc;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}
.mega-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: var(--text);
    font-size: .88rem;
    font-weight: 500;
    transition: all .15s ease;
    border-left: 3px solid transparent;
    text-decoration: none;
    position: relative;
}
.mega-cat-item i:first-child {
    width: 22px;
    text-align: center;
    font-size: 1rem;
    color: var(--primary);
    opacity: .7;
    transition: all .15s ease;
}
.mega-cat-item span {
    flex: 1;
}
.mega-cat-arrow {
    font-size: .65rem !important;
    color: #bbb !important;
    width: auto !important;
    opacity: 1 !important;
    transition: all .15s ease;
}
.mega-cat-item:hover,
.mega-cat-item.active {
    background: var(--white);
    color: var(--primary);
    border-left-color: var(--primary);
    text-decoration: none;
}
.mega-cat-item:hover i:first-child,
.mega-cat-item.active i:first-child {
    opacity: 1;
    color: var(--primary);
}
.mega-cat-item:hover .mega-cat-arrow,
.mega-cat-item.active .mega-cat-arrow {
    color: var(--primary) !important;
    transform: translateX(2px);
}
.mega-menu-left-footer {
    margin-top: auto;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
}
.mega-quote-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--secondary), #d35400);
    color: var(--white) !important;
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}
.mega-quote-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, .35);
    text-decoration: none;
    color: var(--white) !important;
}

/* Sağ Panel - Alt Kategoriler */
.mega-menu-right {
    flex: 1;
    padding: 24px 30px;
    position: relative;
    min-height: 400px;
}
.mega-sub-panel {
    display: none;
    animation: megaFadeIn .2s ease;
}
.mega-sub-panel.active {
    display: block;
}
@keyframes megaFadeIn {
    from { opacity: 0; transform: translateX(6px); }
    to { opacity: 1; transform: translateX(0); }
}
.mega-sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-gray);
}
.mega-sub-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
}
.mega-sub-header h5 a {
    color: var(--dark);
    text-decoration: none;
}
.mega-sub-header h5 a:hover {
    color: var(--primary);
}
.mega-view-all {
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all .15s ease;
}
.mega-view-all:hover {
    color: var(--secondary);
    gap: 6px;
}
.mega-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 20px;
}
.mega-sub-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--text);
    font-size: .87rem;
    text-decoration: none;
    transition: all .15s ease;
}
.mega-sub-item:hover {
    background: var(--bg-light);
    color: var(--primary);
    text-decoration: none;
    transform: translateX(3px);
}
.mega-sub-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: .7rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all .15s ease;
}
.mega-sub-item:hover .mega-sub-icon {
    background: var(--primary);
    color: var(--white);
}
.mega-sub-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    color: var(--text-light);
}
.mega-sub-empty i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: .3;
}
.mega-sub-empty p {
    margin-bottom: 16px;
    font-size: .9rem;
}

/* ========== MOBILE MENU ========== */
.mobile-nav {
    list-style: none; padding: 0; margin: 0;
}
.mobile-nav > li > a {
    display: block; padding: 12px 0;
    border-bottom: 1px solid var(--bg-gray);
    color: var(--text); font-weight: 500;
}
.mobile-nav-sub {
    list-style: none; padding: 0 0 0 16px; margin: 0;
    display: none;
}
.mobile-nav-parent.open .mobile-nav-sub { display: block; }
.mobile-nav-sub li a {
    display: block; padding: 8px 0;
    color: var(--text-light); font-size: .88rem;
    border-bottom: 1px solid #f0f0f0;
}

/* ========== HERO SLIDER ========== */
.hero-slider { position: relative; }
.heroSwiper { width: 100%; }
.hero-slide { position: relative; width: 100%; height: 500px; overflow: hidden; }

/* Resim: slider boyunu tam kaplar, oran korunur */
.hero-slide__img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

/* Metin katmanı - resmin üzerine overlay */
.hero-slide__text {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
    z-index: 2;
}
.hero-content {
    position: relative; color: var(--white);
    max-width: 550px;
    padding: 20px 0;
}
.hero-content h1 {
    font-size: clamp(1.2rem, 3vw, 2.5rem); font-weight: 800;
    margin-bottom: 10px; line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.hero-content p {
    font-size: clamp(.8rem, 1.3vw, 1.15rem); margin-bottom: 16px;
    opacity: .95; text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-content__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Gradient (resim olmayan) varsayılan slide'lar */
.hero-slide--gradient { height: 500px; }

/* Swiper nav */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.heroSwiper .swiper-pagination-bullet { background: rgba(255,255,255,.6); }
.heroSwiper .swiper-pagination-bullet-active { background: var(--white); }

@media (max-width: 576px) {
    .hero-slide, .hero-slide--gradient { height: 250px; }
    .hero-slide__text {
        background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
        align-items: flex-end;
    }
    .hero-content { max-width: 100%; padding-bottom: 40px; }
    .hero-content h1 { font-size: 1.1rem; }
    .hero-content p { font-size: .82rem; margin-bottom: 10px; }
    .hero-content .btn { padding: 6px 14px; font-size: .8rem; }
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev { display: none; }
}
@media (min-width: 577px) and (max-width: 991px) {
    .hero-slide, .hero-slide--gradient { height: 350px; }
    .hero-content { max-width: 420px; }
}
@media (min-width: 992px) and (max-width: 1399px) {
    .hero-slide, .hero-slide--gradient { height: 450px; }
}
@media (min-width: 1400px) {
    .hero-slide, .hero-slide--gradient { height: 550px; }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center; margin-bottom: 30px;
}
.section-header h2 {
    font-weight: 800; font-size: 1.6rem;
    color: var(--dark); margin-bottom: 6px;
}
.section-header p { color: var(--text-light); font-size: .95rem; }

.page-title {
    font-weight: 700; font-size: 1.5rem;
    margin-bottom: 20px; color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-gray);
}

/* ========== CATEGORY CARDS ========== */
.category-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 25px 15px;
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition); text-decoration: none; color: var(--text);
    height: 100%;
}
.category-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    color: var(--primary);
}
.category-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(26,82,118,.08), rgba(41,128,185,.12));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--primary);
    margin-bottom: 12px;
}
.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}
.category-card h5 { font-size: .9rem; font-weight: 600; margin: 0; }

/* ========== PRODUCT CARD ========== */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex; flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.product-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 3px 10px; border-radius: 20px;
    font-size: .72rem; font-weight: 700;
    z-index: 2;
}
.badge-discount { background: #e74c3c; color: var(--white); }
.badge-featured { background: var(--secondary); color: var(--white); top: 10px; left: auto; right: 10px; }

.product-image {
    display: block; aspect-ratio: 1/1;
    overflow: hidden; background: var(--bg-light);
}
.product-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
    padding: 10px;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-no-image {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: #ddd;
}

.product-info {
    padding: 12px;
    flex: 1; display: flex; flex-direction: column;
}
.product-brand {
    font-size: .72rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 4px;
}
.product-title {
    font-size: .85rem; font-weight: 600;
    margin: 0 0 8px; line-height: 1.3;
    flex: 1;
}
.product-title a { color: var(--text); }
.product-title a:hover { color: var(--primary); }

.product-price {
    margin-bottom: 10px;
}
.old-price {
    text-decoration: line-through; color: var(--text-muted);
    font-size: .8rem; margin-right: 6px;
}
.current-price {
    font-weight: 800; font-size: 1.05rem; color: var(--primary);
}

.product-actions { margin-top: auto; }
.btn-add-cart {
    width: 100%; font-size: .82rem; font-weight: 600;
    padding: 8px;
}

/* Out of Stock */
.product-card.out-of-stock { opacity: .65; }
.product-card.out-of-stock .product-image img { filter: grayscale(50%); }
.badge-out-of-stock { background: #e74c3c; color: var(--white); }

/* ========== INFO BAND ========== */
.info-band { background: var(--bg-light); }
.info-list { margin-top: 15px; }
.info-item {
    padding: 6px 0; font-size: .92rem;
}
.info-item i { margin-right: 8px; }

.stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px; text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.stat-number {
    display: block; font-size: 2rem; font-weight: 800;
    color: var(--primary);
}
.stat-label { color: var(--text-light); font-size: .85rem; }

/* ========== BRANDS ========== */
.brands-grid {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 12px;
}
.brand-item {
    display: flex; align-items: center; justify-content: center;
    padding: 15px 25px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none; color: var(--text);
    font-weight: 600; font-size: .9rem;
}
.brand-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    color: var(--primary);
}

/* ========== SIDEBAR ========== */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}
.sidebar-widget h5 {
    font-weight: 700; font-size: 1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 12px; color: var(--dark);
}
.sidebar-widget ul {
    list-style: none; padding: 0; margin: 0;
}
.sidebar-widget ul li a {
    display: block; padding: 7px 0;
    color: var(--text); font-size: .88rem;
    border-bottom: 1px solid #f0f0f0;
}
.sidebar-widget ul li a:hover { color: var(--primary); padding-left: 6px; }
.sidebar-widget ul li.active a { color: var(--primary); font-weight: 600; }

/* ========== PRODUCT DETAIL ========== */
.product-gallery {
    position: relative;
}
.product-gallery .main-image {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-light);
}
.product-gallery .main-image img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
}

/* Swiper Gallery */
.product-main-swiper {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-light);
    aspect-ratio: 1/1;
}
.product-main-swiper .swiper-slide {
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-light);
}
.product-main-swiper .swiper-slide img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.product-main-swiper .swiper-button-next,
.product-main-swiper .swiper-button-prev {
    color: var(--primary);
    background: rgba(255,255,255,.85);
    width: 36px; height: 36px;
    border-radius: 50%;
}
.product-main-swiper .swiper-button-next::after,
.product-main-swiper .swiper-button-prev::after {
    font-size: 16px; font-weight: 700;
}

.product-thumbs-swiper {
    padding: 0 2px;
}
.product-thumbs-swiper .swiper-slide {
    width: 70px; height: 70px;
    border: 2px solid var(--border);
    border-radius: 6px; overflow: hidden;
    cursor: pointer; opacity: .6;
    transition: var(--transition);
    background: var(--bg-light);
}
.product-thumbs-swiper .swiper-slide-thumb-active {
    border-color: var(--primary);
    opacity: 1;
}
.product-thumbs-swiper .swiper-slide:hover {
    opacity: 1;
}
.product-thumbs-swiper .swiper-slide img {
    width: 100%; height: 100%;
    object-fit: contain;
}

/* Product Detail Right Side */
.product-detail-info {
    display: flex; flex-direction: column; gap: 0;
}
.product-detail-title {
    font-size: 1.5rem; font-weight: 700; margin: 0 0 8px; line-height: 1.35;
    color: var(--text);
}
.product-short-desc {
    font-size: .88rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.5;
}

/* Price Container - matching reference */
.product-price-container {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; margin-bottom: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.price-stamps {
    display: flex; gap: 6px; flex-shrink: 0;
}
.product-stamp {
    padding: 6px 12px; border-radius: 4px;
    font-size: .72rem; font-weight: 700; text-align: center;
    line-height: 1.2; color: #fff; white-space: nowrap;
}
.stamp-cargo { background: #e74c3c; }
.stamp-sale {
    background: var(--primary);
    display: flex; align-items: center; gap: 4px;
}
.stamp-sale span { font-size: .9rem; font-weight: 800; }
.stamp-sale div { font-size: .65rem; text-transform: uppercase; }
.price-block { display: flex; flex-direction: column; gap: 2px; margin-left: auto; text-align: right; }
.product-price-old {
    text-decoration: line-through; color: var(--text-muted);
    font-size: .95rem;
}
.product-price-new {
    font-size: 1.6rem; font-weight: 800; color: var(--primary);
    line-height: 1.1;
}

.kdv-note {
    font-size: .82rem; color: var(--primary); margin-bottom: 16px;
    font-weight: 500;
}

/* Cart Buttons - matching reference */
.product-cart-buttons {
    display: flex; align-items: stretch; gap: 0; margin-bottom: 14px;
    border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.product-cart-buttons .quantity-selector {
    display: flex; align-items: center; border: none; border-radius: 0;
    border-right: 1px solid var(--border); overflow: visible;
    width: auto;
}
.product-cart-buttons .qty-btn {
    width: 44px; height: 48px;
    border: none; background: var(--bg-light);
    font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text); transition: var(--transition);
}
.product-cart-buttons .qty-btn:hover { background: var(--bg-gray); }
.product-cart-buttons .qty-input {
    width: 48px; height: 48px;
    text-align: center; border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-weight: 700; font-size: 1.1rem;
    background: #fff; outline: none;
    -moz-appearance: textfield;
}
.product-cart-buttons .qty-input::-webkit-outer-spin-button,
.product-cart-buttons .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-add-to-cart-main {
    flex: 1; border: none;
    background: var(--primary); color: #fff;
    font-size: 1.05rem; font-weight: 700;
    cursor: pointer; transition: var(--transition);
    padding: 12px 24px; text-align: center;
}
.btn-add-to-cart-main:hover { background: var(--primary-dark, #c75000); }

/* Out of stock */
.out-of-stock-box {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; background: #fef2f2; border: 1px solid #fecaca;
    border-radius: var(--radius); color: #dc2626; margin-bottom: 10px;
}
.out-of-stock-box i { font-size: 1.3rem; }

/* User Action Buttons */
.product-user-buttons {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    padding: 12px 0; margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.product-user-buttons a {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .85rem; color: var(--text-light); text-decoration: none;
    transition: var(--transition); cursor: pointer;
}
.product-user-buttons a:hover { color: var(--primary); }
.product-user-buttons a i { font-size: 1rem; }

/* Banner Container - info cards */
.product-banner-container {
    display: flex; flex-direction: column; gap: 0;
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; margin-bottom: 16px;
}
.product-banner {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; font-size: .85rem; color: var(--text-light);
    border-bottom: 1px solid var(--border);
}
.product-banner:last-child { border-bottom: none; }
.product-banner i { font-size: 1.2rem; width: 24px; text-align: center; flex-shrink: 0; }
.banner-installment i { color: #6366f1; }
.banner-cargo i { color: #059669; }
.banner-offer i { color: var(--primary); }
.banner-highlight {
    font-weight: 700; color: var(--text); margin-right: 2px;
}

/* Product List Table (Kategori, Marka, etc.) */
.product-list-container {
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; margin-bottom: 16px;
}
.product-list-row {
    display: flex; padding: 8px 16px;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
}
.product-list-row:last-child { border-bottom: none; }
.product-list-row:nth-child(even) { background: var(--bg-light); }
.product-list-title {
    font-weight: 700; color: var(--text);
    min-width: 130px; flex-shrink: 0;
    padding-right: 12px;
}
.product-list-content {
    color: var(--text-light); flex: 1;
}
.product-list-content a { color: var(--primary); text-decoration: none; }
.product-list-content a:hover { text-decoration: underline; }

/* Stock Status */
.stock-status { margin-bottom: 12px; }

/* Social Share */
.social-share { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.social-share .btn { border-radius: 50%; width: 34px; height: 34px; padding: 0; display: inline-flex; align-items: center; justify-content: center; }

/* Tabs */
.product-tabs .nav-tabs { border-bottom: 2px solid var(--border); }
.product-tabs .nav-link {
    color: var(--text-light); font-weight: 600;
    border: none; padding: 10px 20px;
    font-size: .9rem;
}
.product-tabs .nav-link.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* ========== CART ========== */
.cart-table { width: 100%; }
.cart-table .table { margin-bottom: 0; }
.cart-table th {
    background: var(--bg-light);
    padding: 10px 12px; font-size: .85rem;
    font-weight: 600;
}
.cart-table td {
    padding: 12px; vertical-align: middle;
    border-bottom: 1px solid var(--border);
}
.cart-product {
    display: flex; align-items: center; gap: 12px;
}
.cart-product-image {
    width: 64px; height: 64px; flex-shrink: 0;
    border: 1px solid var(--border); border-radius: 8px;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    background: var(--bg-light);
}
.cart-product-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-no-image {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: #cbd5e1; font-size: 1.4rem; background: var(--bg-light);
}
.cart-product-info { min-width: 0; flex: 1; }
.cart-product-info a {
    font-weight: 600; color: var(--text); font-size: .88rem;
    text-decoration: none; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.cart-product-info a:hover { color: var(--primary); }

/* Cart Summary */
.cart-summary {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    position: sticky; top: 100px;
}
.cart-summary h4 {
    font-weight: 700; margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 2px solid var(--border);
    font-size: 1.05rem;
}
.summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; font-size: .92rem; color: var(--text);
}
.summary-row.total {
    font-weight: 800; font-size: 1.15rem;
    color: var(--primary); padding-top: 12px;
}
.free-shipping-info {
    background: #eff6ff; color: #1e40af; font-size: .8rem;
    padding: 8px 12px; border-radius: 8px; margin: 8px 0;
}

/* Empty State */
.empty-state {
    text-align: center; padding: 60px 20px;
    background: var(--bg-light); border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}
.empty-state i {
    font-size: 3rem; color: #cbd5e1; margin-bottom: 16px; display: block;
}
.empty-state h4 {
    font-weight: 700; margin-bottom: 8px; color: var(--text);
}
.empty-state p {
    color: #94a3b8; margin-bottom: 20px;
}

/* Cart Quantity */
.cart-qty { display: flex; align-items: center; gap: 0; }
.cart-qty .cart-qty-btn {
    width: 32px; height: 32px; padding: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; border-radius: 6px;
}
.cart-qty .cart-qty-input {
    width: 48px; text-align: center; padding: 2px 4px;
    height: 32px; font-size: .85rem; border-radius: 6px;
    -moz-appearance: textfield;
}
.cart-qty .cart-qty-input::-webkit-outer-spin-button,
.cart-qty .cart-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Mobile Cart */
@media (max-width: 767px) {
    .cart-table .table,
    .cart-table .table thead,
    .cart-table .table tbody {
        display: block;
    }
    .cart-table .table thead { display: none; }
    .cart-table .table-responsive { overflow: visible; }

    .cart-table .table tbody tr.cart-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        position: relative;
    }
    .cart-table .table tbody td {
        display: block;
        border: none; padding: 0;
    }
    .cart-table .table tbody td::before { display: none; }

    /* Row 1: Product (full width) */
    .cart-table .table tbody td:first-child {
        flex: 0 0 100%;
        padding-right: 36px;
        margin-bottom: 10px;
    }
    .cart-product { gap: 12px; align-items: flex-start; }
    .cart-product-image { width: 60px; height: 60px; border-radius: 10px; flex-shrink: 0; }
    .cart-product-info a {
        font-size: .85rem; line-height: 1.4;
        -webkit-line-clamp: unset;
        display: block;
        overflow: visible;
        white-space: normal;
    }

    /* Remove button - top right absolute */
    .cart-table .table tbody td.cart-remove-cell {
        position: absolute;
        right: 0; top: 14px;
    }
    .cart-table .table tbody td.cart-remove-cell .btn {
        width: 28px; height: 28px; padding: 0;
        display: flex; align-items: center; justify-content: center;
        font-size: .7rem; border-radius: 50%;
    }

    /* Row 2: Price | Qty | Total */
    .cart-table .table tbody td.cart-price {
        flex: 1; min-width: 0;
        font-size: .82rem; color: #64748b;
        line-height: 26px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .cart-table .table tbody td.cart-qty-cell {
        flex: 0 0 auto;
        padding: 0 10px;
    }
    .cart-table .table tbody td.cart-item-total {
        flex: 1; min-width: 0;
        text-align: right;
        font-weight: 700; font-size: .9rem;
        color: var(--primary);
        line-height: 26px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Compact quantity controls */
    .cart-qty { gap: 2px; }
    .cart-qty .cart-qty-btn { width: 26px; height: 26px; font-size: .72rem; }
    .cart-qty .cart-qty-input { width: 32px; height: 26px; font-size: .78rem; }

    /* Summary */
    .cart-summary {
        position: static;
        padding: 20px 16px;
        border-radius: 16px;
        margin-top: 8px;
    }
    .cart-summary h4 { font-size: 1rem; }
    .summary-row { font-size: .88rem; padding: 6px 0; }
    .summary-row.total { font-size: 1.1rem; }

    /* Bottom buttons stack */
    .cart-table + .d-flex {
        flex-direction: column; gap: 8px;
    }
    .cart-table + .d-flex .btn {
        width: 100%; justify-content: center;
    }

    /* Empty state */
    .empty-state { padding: 40px 16px; }
    .empty-state i { font-size: 2.4rem; }
    .empty-state h4 { font-size: 1rem; }

    /* Free shipping info */
    .free-shipping-info { font-size: .78rem; padding: 8px 10px; }
}

@media (max-width: 400px) {
    .cart-product-image { width: 50px; height: 50px; }
    .cart-product-info a { font-size: .8rem; }
    .cart-qty .cart-qty-btn { width: 24px; height: 24px; font-size: .68rem; }
    .cart-qty .cart-qty-input { width: 28px; height: 24px; font-size: .72rem; }
    .cart-table .table tbody td.cart-price { font-size: .7rem; }
    .cart-table .table tbody td.cart-item-total { font-size: .78rem; }
    .cart-table .table tbody td.cart-qty-cell { padding: 0 6px; }
}

/* ========== CHECKOUT ========== */
.checkout-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}
.checkout-section h5 {
    font-weight: 700; margin-bottom: 15px;
    padding-bottom: 8px; border-bottom: 2px solid var(--bg-gray);
}

.payment-methods .form-check {
    padding: 15px 15px 15px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    transition: var(--transition);
}
.payment-methods .form-check:hover {
    border-color: var(--primary); background: rgba(26,82,118,.02);
}
.payment-methods .form-check-input:checked ~ .form-check-label {
    font-weight: 600;
}
.payment-method-detail {
    display: none; padding: 15px; margin-top: 10px;
    background: var(--bg-light); border-radius: var(--radius);
}

/* ========== AUTH PAGES ========== */
.auth-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 450px;
    margin: 0 auto;
}
.auth-card h3 {
    font-weight: 800; text-align: center;
    margin-bottom: 25px; color: var(--dark);
}

/* ========== BLOG LISTING (Blocksy Enhanced Grid) ========== */

/* Entries Grid */
.blog-entries[data-layout="enhanced-grid"] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Entry Card */
.entry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
    border: 1px solid var(--border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.entry-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

/* Category Pill */
.entry-meta-top { margin-bottom: 12px; }
.entry-category-pill {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .6px;
    line-height: 1.5;
}

/* Entry Title */
.entry-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
    color: var(--dark);
}
.entry-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.entry-title a:hover { color: var(--primary); }

/* Entry Media (Boundless Image) */
.entry-media {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
    text-decoration: none;
}
.entry-media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.entry-card:hover .entry-media img { transform: scale(1.04); }
.entry-no-image {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-light); color: var(--text-muted);
    border-radius: var(--radius);
}

/* Entry Excerpt */
.entry-excerpt { margin-bottom: 14px; flex: 1; }
.entry-excerpt p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Bottom Meta: Author / Date */
.entry-meta-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: .8rem;
    color: var(--text-muted);
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.entry-meta-bottom .meta-author {
    font-weight: 600;
    color: var(--dark);
}
.entry-meta-bottom .meta-author i { margin-right: 4px; color: var(--primary); }
.entry-meta-bottom .meta-separator { color: var(--border); margin: 0 2px; }
.entry-meta-bottom .meta-date time { color: var(--text-muted); }
.entry-meta-bottom .meta-read-time i { margin-right: 3px; }

/* Blog Pagination (Blocksy style) */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.blog-pagination .page-numbers-wrap { display: flex; gap: 4px; }
.blog-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: .88rem; font-weight: 600;
    color: var(--text); text-decoration: none;
    transition: var(--transition);
}
.blog-pagination .page-numbers:hover { background: var(--bg-light); color: var(--primary); }
.blog-pagination .page-numbers.current {
    background: var(--primary); color: #fff; pointer-events: none;
}
.blog-pagination .page-nav {
    display: inline-flex; align-items: center;
    gap: 6px; font-size: .85rem; font-weight: 600;
    color: var(--dark); text-decoration: none;
    padding: 8px 16px; border-radius: 8px;
    transition: var(--transition);
}
.blog-pagination .page-nav:hover { background: var(--bg-light); color: var(--primary); }
.blog-pagination .page-nav svg { fill: currentColor; }

/* Sidebar Search */
.sidebar-search-form .form-control {
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: .88rem;
}
.sidebar-search-form .btn {
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Sidebar (shared) */
.blog-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 22px;
    margin-bottom: 20px;
}
.sidebar-widget h5 {
    font-size: .95rem; font-weight: 700;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex; align-items: center; gap: 8px;
}
.sidebar-post {
    display: flex; gap: 12px; align-items: center;
    padding: 10px 0; text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { padding-left: 4px; }
.sidebar-post img {
    width: 65px; height: 48px;
    object-fit: cover; border-radius: var(--radius);
    flex-shrink: 0;
}
.sidebar-post-placeholder {
    width: 65px; height: 48px;
    background: var(--bg-light); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: .85rem; flex-shrink: 0;
}
.sidebar-post-title {
    display: block; font-size: .82rem;
    font-weight: 600; color: var(--dark);
    line-height: 1.35; margin-bottom: 2px;
}
.sidebar-post:hover .sidebar-post-title { color: var(--primary); }
.sidebar-post-date { font-size: .72rem; color: var(--text-muted); }

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), #1a5276);
    color: #fff; border-radius: var(--radius-lg);
    padding: 25px; text-align: center;
}
.sidebar-cta i { font-size: 2rem; margin-bottom: 10px; opacity: .85; }
.sidebar-cta h6 { font-weight: 700; margin-bottom: 8px; }
.sidebar-cta p { font-size: .82rem; opacity: .8; margin-bottom: 15px; }

/* ========== BLOG DETAIL ========== */
.blog-detail-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2540 100%);
    color: #fff; padding: 40px 0 35px;
}
.blog-detail-hero .breadcrumb-light .breadcrumb-item a { color: rgba(255,255,255,.65); }
.blog-detail-hero .breadcrumb-light .breadcrumb-item.active { color: rgba(255,255,255,.4); }
.blog-detail-hero .breadcrumb-light .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }
.blog-detail-title {
    font-size: 2rem; font-weight: 800;
    line-height: 1.3; margin-bottom: 16px;
    max-width: 800px;
}
.blog-detail-meta {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: .84rem; color: rgba(255,255,255,.7);
}
.blog-detail-meta i { margin-right: 5px; }
.blog-detail-cover { margin-top: -10px; margin-bottom: 35px; }
.blog-detail-cover img {
    width: 100%; max-height: 480px;
    object-fit: cover; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.blog-detail-content {
    font-size: .96rem; line-height: 1.9; color: var(--text);
}
.blog-detail-content h2 {
    font-size: 1.35rem; font-weight: 700;
    margin-top: 32px; margin-bottom: 12px; color: var(--dark);
}
.blog-detail-content h3 {
    font-size: 1.15rem; font-weight: 600;
    margin-top: 24px; margin-bottom: 10px; color: var(--dark);
}
.blog-detail-content p { margin-bottom: 16px; }
.blog-detail-content img {
    max-width: 100%; height: auto;
    border-radius: var(--radius); margin: 18px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.blog-detail-content ul, .blog-detail-content ol {
    padding-left: 20px; margin-bottom: 16px;
}
.blog-detail-content li { margin-bottom: 6px; }
.blog-detail-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px; margin: 20px 0;
    background: var(--bg-light); border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic; color: var(--text-muted);
}
.blog-detail-content a { color: var(--primary); font-weight: 500; }
.blog-detail-content a:hover { text-decoration: underline; }

/* Tags */
.blog-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.blog-tag {
    display: inline-block; padding: 4px 12px;
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: 20px; font-size: .78rem; color: var(--text-muted);
    text-decoration: none; transition: var(--transition);
}
.blog-tag:hover {
    background: var(--primary); color: #fff;
    border-color: var(--primary);
}

/* Share */
.blog-share-sidebar {
    position: sticky; top: 100px;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    padding-top: 30px;
}
.share-btn {
    width: 40px; height: 40px;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-size: .95rem; color: #fff;
    text-decoration: none; border: none;
    cursor: pointer; transition: var(--transition);
}
.share-btn:hover { transform: scale(1.12); color: #fff; }
.share-facebook { background: #1877F2; }
.share-twitter { background: #1DA1F2; }
.share-whatsapp { background: #25D366; }
.share-linkedin { background: #0A66C2; }
.share-copy { background: var(--text-muted); }
.share-copy:hover { background: var(--dark); }

/* Blog Responsive */
@media (max-width: 991px) {
    .blog-entries[data-layout="enhanced-grid"] {
        grid-template-columns: repeat(2, 1fr); gap: 20px;
    }
    .entry-card { padding: 18px; }
    .entry-title { font-size: 1.05rem; }
    .blog-detail-title { font-size: 1.5rem; }
    .blog-detail-cover img { max-height: 320px; }
    .blog-sidebar { position: static; margin-top: 30px; }
    .blog-detail-meta { gap: 12px; font-size: .8rem; }
    .blog-share-sidebar { display: none; }
}
@media (max-width: 767px) {
    .blog-entries[data-layout="enhanced-grid"] {
        grid-template-columns: 1fr; gap: 18px;
    }
    .entry-card { padding: 16px; }
    .entry-title { font-size: 1.1rem; }
    .entry-media img { aspect-ratio: 16/10; }
    .entry-excerpt p { -webkit-line-clamp: 2; }
    .entry-meta-bottom { font-size: .75rem; gap: 3px; }
    .entry-meta-bottom .meta-separator { display: none; }
    .entry-meta-bottom .meta-author,
    .entry-meta-bottom .meta-date,
    .entry-meta-bottom .meta-read-time {
        display: inline-flex; align-items: center;
    }
    .entry-meta-bottom .meta-author::after,
    .entry-meta-bottom .meta-date::after {
        content: '·';
        margin: 0 6px;
        color: var(--text-muted);
    }
    .entry-meta-bottom .meta-read-time::after { content: none; }
    .blog-detail-hero { padding: 20px 0 16px; }
    .blog-detail-title { font-size: 1.35rem; }
    .blog-detail-meta { flex-direction: column; gap: 6px; font-size: .78rem; }
    .blog-detail-cover { margin-bottom: 20px; }
    .blog-detail-cover img { max-height: 220px; border-radius: var(--radius); }
    .blog-detail-content { font-size: .9rem; line-height: 1.75; }
    .blog-detail-content h2 { font-size: 1.15rem; margin-top: 24px; }
    .blog-detail-content h3 { font-size: 1.05rem; margin-top: 18px; }
    .blog-pagination { gap: 4px; margin-top: 30px; padding-top: 20px; }
    .blog-pagination .page-numbers { width: 34px; height: 34px; font-size: .8rem; }
    .blog-pagination .page-nav { padding: 6px 10px; font-size: .8rem; }
    .sidebar-widget { padding: 16px; }
    .sidebar-cta { padding: 20px; }
    .blog-share-mobile .d-flex { flex-wrap: wrap; }
}
@media (max-width: 400px) {
    .entry-card { padding: 14px; }
    .entry-title { font-size: 1rem; }
    .entry-category-pill { font-size: .65rem; padding: 3px 10px; }
    .blog-detail-title { font-size: 1.15rem; }
    .blog-detail-hero .breadcrumb { font-size: .75rem; }
    .blog-pagination .page-numbers-wrap { gap: 2px; }
    .blog-pagination .page-numbers { width: 30px; height: 30px; font-size: .75rem; }
    .blog-pagination .page-nav span { display: none; }
}

/* ========== FEATURES BAND ========== */
.features-band {
    background: var(--primary);
    color: var(--white);
    padding: 30px 0;
}
.feature-item { padding: 15px 10px; }
.feature-item i { font-size: 2rem; margin-bottom: 8px; display: block; }
.feature-item h6 { font-weight: 700; margin-bottom: 3px; }
.feature-item p { font-size: .8rem; opacity: .8; margin: 0; }

/* ========== NEWSLETTER ========== */
.newsletter-section {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
}
.newsletter-section h4 { font-weight: 700; margin-bottom: 8px; }
.newsletter-section p { opacity: .7; margin-bottom: 15px; }
.newsletter-form .form-control {
    border: none; border-radius: var(--radius) 0 0 var(--radius);
    padding: 12px 16px;
}
.newsletter-form .btn {
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 700;
}

/* ========== FOOTER ========== */
.footer-main {
    background: #1e2a38;
    color: #ccc;
    padding: 40px 0 20px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; color: var(--white); }
.footer-logo .logo-icon {
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem;
}
.footer-widget h5 {
    color: var(--white); font-weight: 700;
    font-size: .95rem; margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255,255,255,.1);
}
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget ul li { margin-bottom: 6px; }
.footer-widget ul li a { color: #aaa; font-size: .85rem; }
.footer-widget ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact p { font-size: .85rem; margin-bottom: 6px; }
.footer-contact p i { width: 18px; color: var(--secondary); margin-right: 6px; }
.footer-contact a { color: #aaa; }
.footer-contact a:hover { color: var(--white); }

.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    color: #aaa; font-size: .9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary); border-color: var(--primary); color: var(--white);
}

.footer-bottom {
    background: #161d28;
    padding: 15px 0;
    font-size: .82rem; color: #888;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px;
    width: 56px; height: 56px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37,211,102,.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1); color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,.5);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed; bottom: 90px; right: 25px;
    width: 42px; height: 42px;
    background: var(--primary); border: none;
    border-radius: 50%; color: var(--white);
    font-size: 1rem;
    display: none; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    z-index: 999; cursor: pointer;
    transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ========== ACCOUNT ========== */
.account-stats {
    display: flex; gap: 15px; margin-bottom: 20px;
}
.account-stat {
    flex: 1; text-align: center; padding: 15px;
    background: var(--bg-light); border-radius: var(--radius);
}

/* ========== QUOTE PAGE ========== */

/* --- Hero --- */
.quote-hero {
    background: var(--primary-dark);
    padding: 48px 0 42px;
    text-align: center;
    position: relative;
}
.quote-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary-light), var(--secondary));
}
.quote-hero__inner { position: relative; z-index: 1; }
.quote-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    padding: 5px 18px;
    border-radius: 30px;
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}
.quote-hero__badge i { color: var(--secondary); }
.quote-hero h1 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}
.quote-hero p {
    color: rgba(255,255,255,.7);
    font-size: .92rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

/* --- Avantajlar --- */
.quote-advantages {
    padding: 28px 0 8px;
}
.quote-adv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.quote-adv-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.quote-adv-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-gray);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.quote-adv-card:hover .quote-adv-card__icon {
    background: var(--primary);
    color: #fff;
}
.quote-adv-card h4 {
    font-size: .84rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}
.quote-adv-card p {
    font-size: .76rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.45;
}

/* --- Form Section --- */
.quote-form-section { padding: 28px 0 48px; }

.quote-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.quote-form-card__header {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.quote-form-card__header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.quote-form-card__header h3 i {
    color: var(--secondary);
    margin-right: 8px;
}
.quote-form-card__header p {
    font-size: .82rem;
    color: var(--text-light);
    margin: 0;
}

/* --- Form --- */
.quote-form { padding: 24px; }

.quote-form__section { margin-bottom: 24px; }
.quote-form__section:last-of-type { margin-bottom: 20px; }

.quote-form__section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg-gray);
}
.quote-form__step {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0;
}
.quote-form .form-floating label i {
    margin-right: 5px;
    color: var(--text-muted);
    font-size: .82rem;
}
.quote-form .form-floating > .form-control,
.quote-form .form-floating > .form-select {
    border-color: var(--border);
    border-radius: var(--radius);
    font-size: .9rem;
}
.quote-form .form-floating > .form-control:focus,
.quote-form .form-floating > .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, .1);
}
.quote-form .form-text {
    font-size: .76rem;
    color: var(--text-muted);
    margin-top: 5px;
}
.quote-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 24px;
    border: none;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.quote-form__submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(14, 52, 80, .3);
}

/* --- Success --- */
.quote-success {
    background: var(--white);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 56px 28px;
    text-align: center;
    box-shadow: var(--shadow);
}
.quote-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f8ef;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
}
.quote-success h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.quote-success p {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 20px;
}

/* --- Sidebar --- */
.quote-sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
}
.quote-sidebar-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}
.quote-sidebar-card__header i {
    color: var(--primary);
    font-size: 1rem;
}
.quote-sidebar-card__header h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.quote-sidebar-card__body { padding: 16px 18px; }
.quote-sidebar-card__desc {
    font-size: .82rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* İletişim Listesi */
.quote-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quote-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
}
.quote-contact-list li + li {
    border-top: 1px solid var(--bg-gray);
}
.quote-contact-list li > i {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: var(--bg-gray);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.quote-contact-list li div span {
    display: block;
    font-size: .72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 1px;
}
.quote-contact-list li div a,
.quote-contact-list li div p {
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    margin: 0;
}
.quote-contact-list li div a:hover { color: var(--primary); }

/* Hizmet Listesi */
.quote-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quote-service-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 0;
    font-size: .84rem;
    color: var(--text);
}
.quote-service-list li + li {
    border-top: 1px solid var(--bg-gray);
}
.quote-service-list li i {
    color: var(--primary);
    width: 16px;
    text-align: center;
    font-size: .82rem;
}

/* Güven Rozeti */
.quote-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quote-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--bg-light);
    border: 1px solid var(--border);
}
.quote-trust__item i {
    color: var(--accent);
    font-size: .85rem;
    width: 16px;
    text-align: center;
}
.quote-trust__item span {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
}

/* --- Mobile --- */
@media (max-width: 991px) {
    .quote-hero { padding: 36px 0 30px; }
    .quote-hero h1 { font-size: 1.45rem; }
    .quote-form-section { padding: 20px 0 36px; }
}
@media (max-width: 576px) {
    .quote-hero { padding: 28px 0 24px; }
    .quote-hero h1 { font-size: 1.2rem; }
    .quote-hero p { font-size: .84rem; }
    .quote-form { padding: 18px 16px; }
    .quote-form-card__header { padding: 16px 16px; }
    .quote-adv-card { padding: 14px 10px; }
    .quote-adv-card__icon { width: 36px; height: 36px; font-size: .95rem; }
    .quote-adv-card h4 { font-size: .78rem; }
    .quote-adv-card p { font-size: .7rem; }
    .quote-form__submit { padding: 12px; font-size: .88rem; }
}

/* ========== CONTACT PAGE ========== */

/* Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .6;
}
.contact-hero-inner {
    position: relative; z-index: 1;
}
.contact-hero h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-hero p {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    margin: 0;
}

/* Info Cards Section */
.contact-cards-section {
    margin-top: -30px;
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.ct-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border: 1px solid transparent;
    transition: var(--transition);
}
.ct-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    border-color: var(--primary-light);
}
.ct-card-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 14px;
    background: rgba(26,82,118,.1);
    color: var(--primary);
    font-size: 1.4rem;
    transition: var(--transition);
}
.ct-card:hover .ct-card-icon {
    transform: scale(1.1);
}
.ct-card-icon--green { background: rgba(39,174,96,.1); color: #27ae60; }
.ct-card-icon--purple { background: rgba(99,102,241,.1); color: #6366f1; }
.ct-card-icon--whatsapp { background: rgba(37,211,102,.1); color: #25d366; }
.ct-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.ct-card p {
    margin: 0 0 4px;
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.6;
}
.ct-card a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}
.ct-card a:hover { color: var(--primary-dark); text-decoration: underline; }
.ct-label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: .75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 4px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

/* Main Section */
.contact-main-section {
    padding: 40px 0 60px;
}

/* Form Box */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.contact-form-header h3 i {
    color: var(--primary);
    margin-right: 8px;
}
.contact-form-header p {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 24px;
}

/* Alerts */
.ct-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: .9rem;
}
.ct-alert i {
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.ct-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.ct-alert--success i { color: #059669; }
.ct-alert--success strong { display: block; margin-bottom: 2px; }
.ct-alert--success p { margin: 0; }
.ct-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
.ct-alert--error i { color: #dc2626; }
.ct-alert--error ul { padding-left: 16px; margin: 0; }

/* Input Groups */
.ct-input-group { margin-bottom: 0; }
.ct-label-text {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.ct-label-text span { color: #dc2626; }
.ct-input-wrap {
    position: relative;
}
.ct-input-wrap > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: .85rem;
    pointer-events: none;
    z-index: 1;
}
.ct-input-wrap--textarea > i {
    top: 18px;
    transform: none;
}
.ct-input-wrap .form-control {
    padding-left: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .92rem;
    transition: var(--transition);
    background: var(--bg-light);
}
.ct-input-wrap .form-control:focus {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(41,128,185,.12);
}

/* Submit Button */
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.ct-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,82,118,.3);
}
.ct-submit-btn:active {
    transform: translateY(0);
}

/* Map Box */
.contact-map-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-map-frame {
    flex: 1;
    min-height: 380px;
}
.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
}
.contact-map-address {
    padding: 16px 20px;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    font-size: .88rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-map-address i { color: var(--primary); font-size: 1rem; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
    background: transparent;
    padding: 0; font-size: .85rem;
}
.breadcrumb-item a { color: var(--text-light); }
.breadcrumb-item.active { color: var(--primary); }

/* ========== ALERTS & TOAST ========== */
.toast-notification {
    position: fixed; top: 70px; right: 20px;
    min-width: 300px; z-index: 9999;
    animation: slideInRight .3s ease;
}
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ========== STAR RATING INPUT ========== */
.star-rating-input {
    display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px;
}
.star-rating-input input { display: none; }
.star-rating-input label {
    cursor: pointer; font-size: 1.5rem; color: #ddd; transition: color .15s;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #ffc107;
}
.star-rating-input input:checked ~ label i { font-weight: 900; }

/* ========== PRODUCT CARD RATING ========== */
.product-rating { margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.product-rating .stars { font-size: .7rem; }
.product-rating small { font-size: .72rem; }

/* ========== PRODUCT ACTIONS COMPARE ========== */
.product-actions { margin-top: auto; display: flex; gap: 6px; }
.btn-add-cart { flex: 1; font-size: .82rem; font-weight: 600; padding: 8px; }
.btn-compare { padding: 8px 10px; font-size: .82rem; }
.btn-compare.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ========== COMPARE BAR ========== */
.compare-bar {
    position: fixed; bottom: -80px; left: 0; right: 0;
    background: var(--dark); color: #fff;
    padding: 12px 0; z-index: 1050;
    transition: bottom .3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.compare-bar.show { bottom: 0; }

/* ========== COMPARE TABLE ========== */
.compare-table th { background: var(--bg-light); font-size: .85rem; vertical-align: middle; }
.compare-table td { vertical-align: middle; font-size: .9rem; }

/* ========== SOCIAL SHARE ========== */
.social-share { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.social-share .btn { border-radius: 50%; width: 34px; height: 34px; padding: 0; display: inline-flex; align-items: center; justify-content: center; }

/* ========== ORDER TIMELINE ========== */
.order-timeline { padding: 20px 0; }
.timeline-track {
    display: flex; justify-content: space-between; position: relative;
}
.timeline-track::before {
    content: ''; position: absolute; top: 20px; left: 40px; right: 40px;
    height: 3px; background: #e2e8f0; z-index: 0;
}
.timeline-step {
    position: relative; z-index: 1; text-align: center; flex: 1;
}
.timeline-dot {
    width: 42px; height: 42px; border-radius: 50%;
    background: #e2e8f0; color: #94a3b8;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px; font-size: 1rem;
    transition: all .3s ease;
}
.timeline-step.active .timeline-dot {
    background: var(--accent); color: #fff;
}
.timeline-step.current .timeline-dot {
    background: var(--primary); color: #fff;
    box-shadow: 0 0 0 4px rgba(26,82,118,.2);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(26,82,118,.2); }
    50% { box-shadow: 0 0 0 8px rgba(26,82,118,.1); }
}
.timeline-label {
    font-size: .78rem; font-weight: 600; color: #94a3b8;
}
.timeline-step.active .timeline-label { color: var(--text); }
.timeline-step.current .timeline-label { color: var(--primary); }

@media (max-width: 576px) {
    .timeline-dot { width: 34px; height: 34px; font-size: .85rem; }
    .timeline-label { font-size: .68rem; }
    .timeline-track::before { left: 20px; right: 20px; top: 17px; }
}

/* ========== UTILITIES ========== */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.btn-primary {
    background: var(--primary); border-color: var(--primary);
    font-weight: 600;
}
.btn-primary:hover {
    background: var(--primary-dark); border-color: var(--primary-dark);
}
.btn-outline-primary {
    color: var(--primary); border-color: var(--primary);
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: var(--primary); border-color: var(--primary);
}

.loading-spinner {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Quick search dropdown */
.search-results-dropdown {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1060; display: none;
    max-height: 400px; overflow-y: auto;
}
.search-results-dropdown.active { display: block; }
.search-result-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none; color: var(--text);
}
.search-result-item:hover { background: var(--bg-light); color: var(--primary); }
.search-result-item img {
    width: 45px; height: 45px;
    object-fit: contain; border-radius: 4px;
}
.search-result-item .sr-name { font-weight: 500; font-size: .88rem; }
.search-result-item .sr-price { font-weight: 700; color: var(--primary); font-size: .85rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .top-bar-left, .top-bar-right { text-align: center; }
    .top-bar-right { margin-top: 4px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-item { padding: 15px; }
    .stat-number { font-size: 1.4rem; }
}

@media (max-width: 767px) {
    .top-bar { font-size: .72rem; }
    .hero-content .btn { font-size: .85rem; padding: 8px 16px; }
    .section-header h2 { font-size: 1.2rem; }
    .product-info { padding: 8px; }
    .product-title { font-size: .78rem; }
    .current-price { font-size: .92rem; }
    .btn-add-cart { font-size: .75rem; padding: 6px; }
    .cart-table { font-size: .82rem; }
    .features-band { padding: 20px 0; }
    .feature-item i { font-size: 1.5rem; }
    .feature-item h6 { font-size: .82rem; }
    .feature-item p { font-size: .72rem; }
    .footer-main { font-size: .85rem; }
}

@media (max-width: 575px) {
    .header-action span:not(.cart-badge) { display: none; }
    .product-card { font-size: .85rem; }
    .product-detail-title { font-size: 1.2rem; }
    .product-price-new { font-size: 1.4rem; }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ======================================== */

/* --- TABLET (max-width: 991px) --- */
@media (max-width: 991px) {
    .mega-menu-panel { display: none !important; }
    .page-title { font-size: 1.25rem; margin-bottom: 16px; }
    .checkout-section { padding: 16px; }
    .sidebar-widget { padding: 16px; }
    .contact-hero { padding: 36px 0 34px; }
    .contact-hero h1 { font-size: 1.6rem; }
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-card { padding: 22px 18px; }
    .contact-form-box { padding: 28px; }
    .contact-main-section { padding: 30px 0 40px; }
    .account-stats { flex-wrap: wrap; }
    .account-stat { flex: 1 1 45%; }
}

/* --- MOBILE (max-width: 767px) --- */
@media (max-width: 767px) {
    /* Global */
    body { font-size: .93rem; }
    .container { padding-left: 12px; padding-right: 12px; }
    .py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .mb-4 { margin-bottom: 1rem !important; }

    /* Page Title */
    .page-title { font-size: 1.1rem; padding-bottom: 8px; margin-bottom: 14px; }

    /* Top Bar */
    .top-bar { padding: 4px 0; }
    .top-bar a { margin-right: 8px; font-size: .72rem; }

    /* Header */
    .logo-icon { width: 34px; height: 34px; font-size: 1rem; border-radius: 8px; }
    .logo-text { font-size: .95rem; }
    .logo-text small { font-size: .58rem; }
    .header-action { font-size: .65rem; }
    .header-action i { font-size: 1.05rem; }
    .header-actions { gap: 8px; }

    /* Section Headers */
    .section-header { margin-bottom: 20px; }
    .section-header h2 { font-size: 1.15rem; }
    .section-header p { font-size: .85rem; }

    /* Category Cards */
    .category-card { padding: 15px 10px; }
    .category-icon { width: 48px; height: 48px; font-size: 1.2rem; border-radius: 12px; margin-bottom: 8px; }
    .category-card h5 { font-size: .78rem; }

    /* Product Card */
    .product-info { padding: 8px; }
    .product-title { font-size: .78rem; margin-bottom: 6px; }
    .product-brand { font-size: .65rem; }
    .current-price { font-size: .9rem; }
    .old-price { font-size: .72rem; }
    .btn-add-cart { font-size: .74rem; padding: 6px; }
    .btn-compare { padding: 6px 8px; font-size: .74rem; }
    .product-badge { font-size: .65rem; padding: 2px 8px; }
    .product-rating .stars { font-size: .62rem; }
    .product-rating small { font-size: .65rem; }

    /* Product Detail */
    .product-detail-title { font-size: 1.15rem; line-height: 1.3; }
    .product-price-new { font-size: 1.3rem; }
    .product-price-old { font-size: .88rem; }
    .product-price-container { padding: 10px 12px; gap: 8px; flex-wrap: wrap; }
    .product-stamp { padding: 5px 8px; font-size: .65rem; }
    .stamp-sale span { font-size: .78rem; }
    .product-thumbs-swiper .swiper-slide { width: 56px; height: 56px; }
    .product-main-swiper .swiper-button-next,
    .product-main-swiper .swiper-button-prev { width: 30px; height: 30px; }
    .product-main-swiper .swiper-button-next::after,
    .product-main-swiper .swiper-button-prev::after { font-size: 12px; }
    .product-cart-buttons .qty-btn { width: 38px; height: 42px; }
    .product-cart-buttons .qty-input { width: 42px; height: 42px; font-size: 1rem; }
    .btn-add-to-cart-main { font-size: .95rem; padding: 10px 16px; }
    .product-user-buttons { gap: 10px; font-size: .8rem; }
    .product-banner { padding: 8px 12px; font-size: .8rem; }
    .product-list-row { padding: 7px 12px; font-size: .82rem; }
    .product-list-title { min-width: 110px; }
    .product-tabs .nav-link { padding: 8px 12px; font-size: .82rem; }

    /* Sidebar */
    .sidebar-widget { padding: 14px; margin-bottom: 16px; }
    .sidebar-widget h5 { font-size: .9rem; }
    .blog-sidebar { position: static; }

    /* Checkout */
    .checkout-section { padding: 14px; margin-bottom: 14px; }
    .checkout-section h5 { font-size: .95rem; }
    .payment-methods .form-check { padding: 12px 12px 12px 36px; font-size: .88rem; }
    .payment-method-detail { padding: 12px; }

    /* Auth */
    .auth-card { padding: 20px 16px; }
    .auth-card h3 { font-size: 1.1rem; margin-bottom: 18px; }

    /* Contact */
    .contact-hero { padding: 30px 0 28px; }
    .contact-hero h1 { font-size: 1.35rem; }
    .contact-hero p { font-size: .9rem; }
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .ct-card { padding: 20px 16px; }
    .ct-card-icon { width: 46px; height: 46px; font-size: 1.2rem; margin-bottom: 10px; }
    .ct-card h5 { font-size: .9rem; margin-bottom: 6px; }
    .ct-card p { font-size: .85rem; }
    .contact-form-box { padding: 22px 18px; }
    .contact-form-header h3 { font-size: 1.1rem; }
    .ct-submit-btn { width: 100%; justify-content: center; padding: 13px; }
    .contact-map-frame, .contact-map-frame iframe { min-height: 280px; }
    .contact-main-section { padding: 24px 0 40px; }

    /* Info Band, Features, Newsletter */
    .info-band { padding: 15px 0; }
    .info-item { font-size: .82rem; padding: 4px 0; }
    .stats-grid { gap: 12px; }
    .stat-item { padding: 16px 10px; }
    .stat-number { font-size: 1.3rem; }
    .stat-label { font-size: .78rem; }

    .features-band { padding: 16px 0; }
    .feature-item { padding: 10px 6px; }
    .feature-item i { font-size: 1.3rem; margin-bottom: 6px; }
    .feature-item h6 { font-size: .78rem; margin-bottom: 2px; }
    .feature-item p { font-size: .68rem; }

    .newsletter-section { padding: 24px 0; }
    .newsletter-section h4 { font-size: 1rem; }
    .newsletter-section p { font-size: .85rem; }

    /* Footer */
    .footer-main { padding: 24px 0 16px; font-size: .82rem; }
    .footer-widget h5 { font-size: .88rem; margin-bottom: 10px; }
    .footer-widget ul li a { font-size: .8rem; }
    .footer-social a { width: 32px; height: 32px; font-size: .8rem; }
    .footer-bottom { font-size: .75rem; padding: 10px 0; }

    /* Breadcrumb */
    .breadcrumb { font-size: .78rem; }

    /* WhatsApp & Scroll Top */
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.5rem; bottom: 16px; right: 16px; }
    .scroll-top { width: 36px; height: 36px; font-size: .85rem; bottom: 72px; right: 16px; }

    /* Compare Bar */
    .compare-bar { font-size: .82rem; }

    /* Search Results Dropdown */
    .search-results-dropdown { max-height: 300px; }
    .search-result-item { padding: 8px 12px; gap: 8px; }
    .search-result-item img { width: 38px; height: 38px; }
    .search-result-item .sr-name { font-size: .82rem; }
    .search-result-item .sr-price { font-size: .8rem; }

    /* Quote Page */
    .quote-sidebar-card__body { padding: 12px 14px; }
    .quote-contact-list li { gap: 8px; padding: 7px 0; }
    .quote-contact-list li > i { width: 28px; height: 28px; font-size: .72rem; }
    .quote-trust__item { padding: 8px 10px; }
    .quote-trust__item span { font-size: .75rem; }

    /* Order Timeline */
    .timeline-track { gap: 2px; }
    .timeline-dot { width: 32px; height: 32px; font-size: .8rem; }
    .timeline-label { font-size: .65rem; }
    .timeline-track::before { top: 16px; left: 16px; right: 16px; }

    /* Brands */
    .brands-grid { gap: 8px; }
    .brand-item { padding: 10px 14px; font-size: .8rem; }

    /* Star Rating */
    .star-rating-input label { font-size: 1.3rem; }

    /* Toast */
    .toast-notification { min-width: auto; left: 12px; right: 12px; }

    /* Alerts */
    .alert { font-size: .88rem; padding: 10px 14px; }

    /* Tables */
    .table-responsive { -webkit-overflow-scrolling: touch; }
    .compare-table th, .compare-table td { font-size: .8rem; padding: 8px; white-space: nowrap; }
}

/* --- SMALL PHONES (max-width: 400px) --- */
@media (max-width: 400px) {
    .container { padding-left: 10px; padding-right: 10px; }

    /* Header */
    .logo-icon { width: 30px; height: 30px; font-size: .9rem; }
    .logo-text { font-size: .85rem; }
    .logo-text small { display: none; }
    .header-actions { gap: 6px; }

    /* Section Headers */
    .section-header h2 { font-size: 1rem; }
    .page-title { font-size: 1rem; }

    /* Category Cards */
    .category-card { padding: 10px 6px; }
    .category-icon { width: 40px; height: 40px; font-size: 1rem; }
    .category-card h5 { font-size: .7rem; }

    /* Product Card */
    .product-info { padding: 6px; }
    .product-title { font-size: .72rem; }
    .current-price { font-size: .82rem; }
    .btn-add-cart { font-size: .68rem; padding: 5px; }
    .product-badge { font-size: .6rem; padding: 2px 6px; top: 6px; left: 6px; }

    /* Product Detail */
    .product-detail-title { font-size: 1rem; }
    .product-price-new { font-size: 1.15rem; }
    .product-price-old { font-size: .8rem; }
    .product-price-container { padding: 8px 10px; }
    .product-stamp { padding: 4px 6px; font-size: .6rem; }
    .stamp-sale span { font-size: .7rem; }
    .product-thumbs-swiper .swiper-slide { width: 48px; height: 48px; }
    .product-cart-buttons .qty-btn { width: 34px; height: 38px; font-size: .85rem; }
    .product-cart-buttons .qty-input { width: 36px; height: 38px; font-size: .9rem; }
    .btn-add-to-cart-main { font-size: .85rem; padding: 8px 12px; }
    .product-user-buttons { gap: 8px; }
    .product-user-buttons a { font-size: .78rem; }
    .product-banner { padding: 7px 10px; font-size: .78rem; }
    .product-banner i { font-size: 1rem; }
    .product-list-row { padding: 6px 10px; font-size: .8rem; }
    .product-list-title { min-width: 95px; font-size: .8rem; }

    /* Checkout */
    .checkout-section { padding: 10px; }
    .payment-methods .form-check { padding: 10px 10px 10px 32px; font-size: .82rem; }

    /* Auth */
    .auth-card { padding: 16px 12px; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr; gap: 8px; }
    .stat-item { padding: 12px; }
    .stat-number { font-size: 1.1rem; }

    /* Contact */
    .contact-hero { padding: 24px 0 22px; }
    .contact-hero h1 { font-size: 1.15rem; }
    .contact-hero p { font-size: .82rem; }
    .contact-cards-section { margin-top: -20px; }
    .contact-cards-grid { grid-template-columns: 1fr; gap: 10px; }
    .ct-card { padding: 16px 14px; }
    .ct-card-icon { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 8px; }
    .ct-card h5 { font-size: .85rem; }
    .ct-card p { font-size: .8rem; }
    .contact-form-box { padding: 18px 14px; }
    .contact-form-header h3 { font-size: 1rem; }
    .ct-submit-btn { font-size: .9rem; padding: 12px; }
    .contact-map-frame, .contact-map-frame iframe { min-height: 220px; }
    .contact-main-section { padding: 20px 0 30px; }

    /* Features Band */
    .feature-item i { font-size: 1.1rem; }
    .feature-item h6 { font-size: .72rem; }
    .feature-item p { font-size: .64rem; }

    /* Footer */
    .footer-main { padding: 18px 0 12px; }
    .footer-widget h5 { font-size: .82rem; }

    /* Order Timeline */
    .timeline-dot { width: 28px; height: 28px; font-size: .72rem; }
    .timeline-label { font-size: .6rem; }
    .timeline-track::before { top: 14px; left: 14px; right: 14px; }

    /* Brands */
    .brand-item { padding: 8px 10px; font-size: .72rem; }
}

/* ========== MOBILE BOTTOM BAR ========== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    z-index: 1050;
    padding: 4px 0 calc(4px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -2px 16px rgba(0,0,0,.08);
}
.mobile-bottom-bar .mbb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px;
    text-decoration: none;
    color: var(--text-light);
    font-size: .65rem;
    font-weight: 500;
    position: relative;
    transition: color .2s;
    -webkit-tap-highlight-color: transparent;
}
.mobile-bottom-bar .mbb-item i {
    font-size: 1.15rem;
    transition: transform .2s;
}
.mobile-bottom-bar .mbb-item.active,
.mobile-bottom-bar .mbb-item:active {
    color: var(--primary);
}
.mobile-bottom-bar .mbb-item.active i {
    transform: scale(1.1);
}
.mbb-badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 18px);
    background: var(--secondary);
    color: var(--white);
    font-size: .6rem;
    font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* Mobile: bottom bar göster, footer gizle */
@media (max-width: 767px) {
    .mobile-bottom-bar {
        display: flex;
    }
    .site-footer {
        display: none;
    }
    /* WhatsApp ve scroll-top butonlarını yukarı taşı */
    .whatsapp-float {
        bottom: 72px !important;
    }
    .scroll-top {
        bottom: 128px !important;
    }
    /* Compare bar'ı yukarı taşı */
    .compare-bar {
        bottom: -60px;
    }
    .compare-bar.show {
        bottom: 58px;
    }
    /* Body alt padding (içerik bottom bar'ın altında kalmasın) */
    body {
        padding-bottom: 60px;
    }
}

/* ===== Mobil Filtre Drawer ===== */
.mobile-filter-drawer {
    position: fixed;
    inset: 0;
    z-index: 1060;
    visibility: hidden;
    pointer-events: none;
}
.mobile-filter-drawer.open {
    visibility: visible;
    pointer-events: auto;
}
.mobile-filter-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    transition: opacity .3s ease;
}
.mobile-filter-drawer.open .mobile-filter-backdrop {
    opacity: 1;
}
.mobile-filter-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 340px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.mobile-filter-drawer.open .mobile-filter-content {
    transform: translateX(0);
}
.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mobile-filter-header h5 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}
.mobile-filter-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
    -webkit-overflow-scrolling: touch;
}
.mobile-filter-body .sidebar-widget {
    border: none;
    padding: 0;
    margin-bottom: 20px;
}
.mobile-filter-body .sidebar-widget h5 {
    font-size: .95rem;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

/* ===== Sonsuz Scroll ===== */
.infinite-scroll-trigger {
    display: block;
    text-align: center;
    padding: 30px 0;
}
.infinite-scroll-spinner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: .9rem;
}
