/* Premium storefront theme — minimalist edition */
:root {
    --brand-blue: #0052cc;
    --brand-blue-glow: rgba(0, 82, 204, 0.3);
    --brand-dark: #080a0f;
    --surface-dark: #121620;
    --surface-light: #ffffff;
    --bg-body: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --accent-red: #f43f5e;
    --accent-green: #16a34a;
    --border-light: #e2e8f0;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    overflow-x: hidden;
    padding-top: 190px;
    min-height: 100vh;
}

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

ul {
    list-style: none;
}

button,
input,
select {
    font-family: inherit;
}

button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

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

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

.storefront-main {
    min-height: 60vh;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 10, 15, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.top-bar {
    height: 40px;
    background: rgba(4, 5, 8, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    transition: var(--transition-smooth);
}

.top-bar-flex,
.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-flex {
    height: 40px;
    justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
    gap: 24px;
}

.top-info-item,
.top-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.top-info-item:hover,
.top-social-link:hover {
    color: #fff;
}

.top-social-link:hover {
    color: var(--brand-blue);
    transform: scale(1.05);
}

header.scrolled .top-bar {
    height: 0;
    overflow: hidden;
    border-bottom-color: transparent;
}

.header-top {
    height: 85px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    transition: var(--transition-smooth);
}

header.scrolled .header-top {
    height: 70px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    white-space: nowrap;
}

.brand-logo svg,
.footer-logo svg,
.feature-icon svg,
.product-placeholder svg,
.detail-placeholder svg {
    width: 32px;
    height: 32px;
    fill: var(--brand-blue);
    filter: drop-shadow(0 0 8px var(--brand-blue-glow));
    flex-shrink: 0;
}

.brand-logo span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-logo-image {
    max-width: 180px;
    max-height: 48px;
    object-fit: contain;
}

.search-wrapper {
    flex: 1;
    max-width: 460px;
    position: relative;
}

.search-input {
    width: 100%;
    min-height: 44px;
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    outline: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    font-size: 14px;
    transition: var(--transition-fast);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.search-input:focus {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.user-tools {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tool-icon {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.tool-icon:hover,
.tool-icon.active {
    color: #fff;
    transform: translateY(-1px);
}

.tool-whatsapp {
    color: #dcfce7;
}

.icon-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #0d1117;
    border-radius: 50%;
    background: var(--accent-red);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-item {
    position: relative;
    flex: 0 0 auto;
    padding-bottom: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.nav-item:hover,
.nav-item.active {
    color: #fff;
}

.nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transition: var(--transition-smooth);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item-sale {
    color: var(--accent-red);
}

/* Hero */
.store-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    margin-top: -1px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-bg-fallback {
    background: linear-gradient(135deg, #080a0f 0%, #121620 48%, #172033 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 10, 15, 0.86) 0%, rgba(8, 10, 15, 0.54) 52%, rgba(8, 10, 15, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 86px 24px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
}

.hero-content h1 {
    max-width: 690px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero-content p {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-cta,
.filter-submit {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 8px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 22px var(--brand-blue-glow);
}

.hero-cta:hover,
.filter-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.hero-cta.secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

/* Sections */
.section-container {
    padding: 64px 0;
}

.compact-section {
    padding-bottom: 12px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-title {
    color: var(--brand-dark);
    font-size: 28px;
    font-weight: 900;
}

.section-subtitle {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.section-link {
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 800;
}

.features-strip {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 20px;
    border-right: 1px solid var(--border-light);
}

.feature-item:last-child {
    border-right: 0;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f5f9;
    flex-shrink: 0;
}

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

.feature-text h3 {
    font-size: 14px;
    color: var(--brand-dark);
    font-weight: 800;
    margin-bottom: 3px;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.45;
}

.category-rail,
.brand-pills-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.category-rail::-webkit-scrollbar,
.brand-pills-scroll::-webkit-scrollbar {
    display: none;
}

.category-pill,
.brand-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #fff;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition-fast);
}

.category-pill strong,
.brand-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--text-secondary);
    font-size: 12px;
}

.category-pill:hover,
.brand-pill:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    transform: translateY(-2px);
}

/* Breadcrumb and listing */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 0 10px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.breadcrumb-nav a:hover,
.breadcrumb-nav .current {
    color: var(--brand-dark);
}

.breadcrumb-nav span {
    margin: 0 10px;
    color: #cbd5e1;
}

.category-header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.cat-title-wrap h1 {
    color: var(--brand-dark);
    font-size: 32px;
    line-height: 1.15;
    font-weight: 900;
}

.cat-title-wrap p {
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.sort-form {
    flex-shrink: 0;
}

.sort-filter-select,
.filter-select,
.filter-input {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #fff;
    color: var(--text-primary);
    outline: none;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 700;
}

.sort-filter-select {
    min-width: 245px;
    cursor: pointer;
}

.category-main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: start;
    gap: 40px;
    margin-bottom: 80px;
}

.filter-sidebar {
    position: sticky;
    top: 190px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
}

.filter-group {
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.filter-group-title {
    margin-bottom: 14px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list li:last-child {
    margin-bottom: 0;
}

.compact-filter-list {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 2px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

.filter-checkbox {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
    appearance: none;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: #fff;
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-checkbox:checked {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
}

.filter-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-label:hover .filter-checkbox {
    border-color: var(--brand-blue);
}

.item-count {
    margin-left: auto;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
}

.top-reset {
    margin: 0 0 18px;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #f8fafc;
}

.filter-select + .filter-select {
    margin-top: 10px;
}

.price-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.filter-submit {
    width: 100%;
    border: 0;
    margin-top: 4px;
}

.filter-reset {
    display: block;
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-product-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    background: var(--surface-light);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: rgba(0, 82, 204, 0.18);
    box-shadow: 0 24px 48px rgba(8, 10, 15, 0.07);
    transform: translateY(-8px);
}

.card-top-meta {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.tag {
    padding: 5px 12px;
    border-radius: 6px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.tag-new {
    background: var(--brand-dark);
}

.tag-sale,
.g-badge-red {
    background: var(--accent-red);
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.card-rating svg {
    fill: #f59e0b;
    color: #f59e0b;
}

.product-image-box {
    position: relative;
    width: 100%;
    height: 210px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    background: #f1f5f9;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-placeholder,
.detail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder svg,
.detail-placeholder svg {
    width: 58px;
    height: 58px;
    opacity: 0.7;
}

.hover-actions {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 10, 15, 0.3);
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: var(--transition-fast);
}

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

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.action-btn.full-width {
    width: calc(100% - 40px);
}

.product-meta {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-title {
    height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 900;
}

.product-card:hover .product-title {
    color: var(--brand-blue);
}

.product-specs-mini {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.spec-item {
    flex: 1;
    min-width: 0;
    padding: 7px 4px;
    border-radius: 6px;
    background: #f8fafc;
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.spec-item span {
    display: block;
    margin-bottom: 2px;
    color: var(--text-secondary);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.color-swatches,
.detail-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.swatch {
    width: 13px;
    height: 13px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--border-light);
}

.swatch.active {
    box-shadow: 0 0 0 2px var(--brand-blue);
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
}

.price-current {
    color: var(--brand-dark);
    font-size: 20px;
    font-weight: 900;
}

.price-request {
    font-size: 17px;
}

.price-old,
.old-detail-price {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
}

.pagination-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #fff;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition-fast);
}

.page-link:hover,
.page-link.active {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 4px 12px var(--brand-blue-glow);
}

.page-link.disabled {
    pointer-events: none;
    color: var(--text-secondary);
}

.empty-state {
    padding: 68px 28px;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    background: #fff;
    text-align: center;
}

.empty-state h3 {
    margin-bottom: 8px;
    color: var(--brand-dark);
    font-size: 20px;
    font-weight: 900;
}

.empty-state p {
    margin: 0 auto 20px;
    max-width: 520px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.detail-empty {
    margin: 64px 0;
}

.store-map {
    height: 420px;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.store-map iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* Detail */
.detail-page {
    margin-bottom: 80px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
    gap: 50px;
    margin-bottom: 80px;
}

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

.main-image-viewport {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: #f1f5f9;
}

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

.gallery-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.g-badge {
    padding: 6px 14px;
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.g-badge-blue {
    background: var(--brand-blue);
}

.thumbnail-strip {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.thumb-box {
    flex: 1;
    height: 95px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #f1f5f9;
    transition: var(--transition-fast);
}

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

.thumb-box:hover,
.thumb-box.active {
    border-color: var(--brand-blue);
    transform: translateY(-2px);
}

.product-info-panel {
    display: flex;
    flex-direction: column;
}

.p-category {
    margin-bottom: 8px;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.p-title {
    margin-bottom: 14px;
    color: var(--brand-dark);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
}

.p-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
}

.stars-wrap {
    display: flex;
    align-items: center;
    color: #f59e0b;
    font-size: 14px;
    line-height: 1;
}

.review-count {
    color: var(--brand-blue);
    text-decoration: underline;
}

.p-price-card {
    margin-bottom: 30px;
    padding: 24px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: #fff;
}

.price-label {
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.main-price {
    color: var(--brand-dark);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
}

.old-detail-price {
    margin-bottom: 2px;
    font-size: 17px;
}

.sub-price-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #10b981;
    font-size: 13px;
    font-weight: 800;
}

.quick-specs-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.matrix-item {
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    background: #f1f5f9;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.matrix-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.color-selector-wrap {
    margin-bottom: 30px;
}

.section-sub-title {
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.d-swatch {
    width: 32px;
    height: 32px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--border-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.d-swatch.active,
.d-swatch:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 2px var(--brand-blue);
}

.muted-inline {
    color: var(--text-secondary);
    font-weight: 700;
}

.purchase-actions-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.quantity-counter {
    height: 54px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #fff;
}

.qty-btn {
    width: 45px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 800;
}

.qty-btn:hover {
    background: #f1f5f9;
    color: var(--brand-dark);
}

.qty-input {
    width: 45px;
    border: 0;
    outline: 0;
    color: var(--brand-dark);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.btn-add-cart,
.btn-showroom-reserve {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-add-cart {
    flex: 1;
    padding: 0 24px;
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 4px 15px var(--brand-blue-glow);
}

.btn-whatsapp-action {
    background: var(--accent-green);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.28);
}

.btn-showroom-reserve {
    padding: 0 24px;
    border: 1px solid var(--brand-dark);
    color: var(--brand-dark);
}

.btn-add-cart:hover,
.btn-showroom-reserve:hover {
    transform: translateY(-2px);
}

.btn-showroom-reserve:hover {
    background: var(--brand-dark);
    color: #fff;
}

.trust-badges-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 800;
}

.trust-item svg {
    color: var(--brand-blue);
    flex-shrink: 0;
}

.tabs-section {
    margin-bottom: 80px;
    padding: 40px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: #fff;
}

.tabs-nav-list {
    display: flex;
    gap: 34px;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.tab-nav-item {
    position: relative;
    padding-bottom: 16px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.tab-nav-item:hover,
.tab-nav-item.active {
    color: var(--brand-dark);
}

.tab-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -17px;
    width: 0;
    height: 3px;
    background: var(--brand-blue);
    transition: var(--transition-smooth);
}

.tab-nav-item.active::after {
    width: 100%;
}

.tab-panel-content {
    display: none;
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}

.tab-panel-content.active {
    display: block;
}

.tab-panel-content p + p {
    margin-top: 12px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
    font-size: 14px;
}

.specs-table th {
    color: var(--brand-dark);
    font-weight: 900;
}

.specs-table td {
    color: var(--text-secondary);
    font-weight: 600;
}

.specs-table .label-td {
    width: 30%;
    color: var(--brand-dark);
    font-weight: 900;
}

.specs-table .value-td {
    color: var(--text-secondary);
}

.stock-specs-table {
    margin-top: 22px;
}

.inline-color-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    vertical-align: -2px;
}

.similar-section {
    padding-top: 0;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 5px solid var(--brand-blue);
    background: var(--brand-dark);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
}

.footer-about {
    max-width: 370px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 14px;
    line-height: 1.75;
}

.footer-title {
    margin-bottom: 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a,
.contact-line,
.contact-address {
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.6;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.contact-line:hover {
    color: var(--brand-blue);
}

.newsletter-box {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.newsletter-input {
    width: 100%;
    min-height: 44px;
    margin-bottom: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    outline: none;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.newsletter-btn {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.newsletter-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.newsletter-contact a {
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    font-weight: 900;
}

.footer-social-row a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .home-product-grid,
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 170px;
    }

    .search-wrapper {
        max-width: 360px;
    }

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

    .filter-sidebar,
    .product-gallery-panel {
        position: static;
    }

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

@media (max-width: 820px) {
    body {
        padding-top: 126px;
    }

    .container {
        padding: 0 16px;
    }

    .top-bar {
        display: none;
    }

    .header-top {
        height: 72px;
        gap: 14px;
    }

    header.scrolled .header-top {
        height: 72px;
    }

    .brand-logo {
        font-size: 18px;
    }

    .site-logo-image {
        max-width: 140px;
        max-height: 40px;
    }

    .search-wrapper {
        display: none;
    }

    .user-tools {
        gap: 10px;
    }

    .tool-icon span {
        display: none;
    }

    .nav-menu {
        gap: 22px;
        padding: 12px 0;
    }

    .nav-item {
        font-size: 12px;
    }

    .store-hero {
        min-height: 430px;
    }

    .hero-content {
        padding: 58px 16px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

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

    .feature-item {
        border-bottom: 1px solid var(--border-light);
    }

    .feature-item:nth-child(even) {
        border-right: 0;
    }

    .section-header,
    .category-header-block,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .sort-filter-select {
        min-width: 0;
    }

    .product-list-grid,
    .home-product-grid {
        grid-template-columns: 1fr;
    }

    .main-image-viewport {
        height: 420px;
    }

    .purchase-actions-wrap,
    .tabs-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .tab-nav-item {
        text-align: left;
    }

    .tab-nav-item::after {
        bottom: 0;
    }

    .trust-badges-row,
    .quick-specs-matrix {
        grid-template-columns: 1fr;
    }

    .tabs-section {
        padding: 24px;
    }

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

@media (max-width: 520px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .product-card {
        padding: 16px;
    }

    .card-top-meta {
        top: 24px;
        left: 24px;
        right: 24px;
    }

    .product-image-box {
        height: 190px;
    }

    .cat-title-wrap h1,
    .section-title {
        font-size: 25px;
    }

    .p-title {
        font-size: 28px;
    }

    .main-price {
        font-size: 30px;
    }

    .main-image-viewport {
        height: 330px;
    }

    .thumbnail-strip {
        gap: 8px;
    }

    .thumb-box {
        height: 72px;
    }

    .specs-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* =========================================
   SWIPER SLIDER CUSTOM STYLES
   ========================================= */
.store-hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.store-hero-slider .swiper-button-prev,
.store-hero-slider .swiper-button-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition-fast);
}
.store-hero-slider .swiper-button-prev::after,
.store-hero-slider .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}
.store-hero-slider .swiper-button-prev:hover,
.store-hero-slider .swiper-button-next:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    transform: scale(1.05);
}
.store-hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: var(--transition-fast);
}
.store-hero-slider .swiper-pagination-bullet-active {
    background: var(--brand-blue);
    width: 24px;
    border-radius: 5px;
}

/* Gallery Swiper overrides */
.gallery-main {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.gallery-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition-fast);
}
.gallery-main .swiper-button-prev::after,
.gallery-main .swiper-button-next::after {
    font-size: 14px;
    font-weight: bold;
}
.gallery-main .swiper-button-prev:hover,
.gallery-main .swiper-button-next:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
}
.gallery-thumbs {
    width: 100%;
}
.gallery-thumbs .thumb-box {
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
}
.gallery-thumbs .thumb-box.swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--brand-blue);
    transform: translateY(-2px);
}

/* =========================================
   CINEMATIC HERO SLIDER & HOMEPAGE STYLES
   ========================================= */
.slider-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: var(--brand-dark);
    overflow: hidden;
}
.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.slide.active {
    opacity: 1;
    visibility: visible;
}
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 10, 15, 0.85) 30%, rgba(8, 10, 15, 0.3) 70%, transparent 100%), linear-gradient(to bottom, transparent 60%, var(--bg-body) 100%);
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 82, 204, 0.12);
    border: 1px solid rgba(0, 82, 204, 0.4);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.badge-premium span {
    width: 6px;
    height: 6px;
    background: var(--brand-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-blue);
}
.slide h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.slide p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 400;
}

.btn-group {
    display: flex;
    gap: 14px;
}
.btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 4px 15px var(--brand-blue-glow);
}
.btn-primary:hover {
    background: #0044aa;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.4);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.slider-controls-overlay {
    position: absolute;
    bottom: 50px;
    width: 100%;
    z-index: 20;
    pointer-events: none;
}
.slider-controls-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.slider-dots, .slider-nav {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.slider-arrow:hover {
    background: #fff;
    color: var(--brand-dark);
    border-color: #fff;
}
.dot {
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    border-radius: 2px;
}
.dot.active {
    background: var(--brand-blue);
    width: 60px;
    box-shadow: 0 0 8px var(--brand-blue);
}

/* =========================================
   KÜRESEL GRID GÖVDE MİMARİSİ (5-col Dense)
   ========================================= */
.section-wrapper {
    padding: 50px 0 10px;
    position: relative;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 22px;
}
.section-title-block h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--brand-dark);
}
.section-title-block p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 3px;
    font-weight: 400;
}

.carousel-outer {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 8px 0 20px;
}
.carousel-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

/* Ortak Ürün Kart Temelleri */
.base-card {
    flex-shrink: 0;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.card-img-holder {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

/* Popular products: 2 rows of 5 */
.carousel-track.popular-grid {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .carousel-track { grid-template-columns: repeat(4, 1fr); }
    .carousel-track.popular-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .carousel-track { grid-template-columns: repeat(3, 1fr); }
    .carousel-track.popular-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .carousel-track { grid-template-columns: repeat(2, 1fr); }
    .carousel-track.popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .carousel-track { grid-template-columns: 1fr; }
    .carousel-track.popular-grid { grid-template-columns: 1fr; }
}
.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.base-card:hover .card-img-holder img {
    transform: scale(1.05);
}

.meta-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.rating-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.9);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.rating-badge svg {
    fill: #f59e0b;
    color: #f59e0b;
}

.card-actions {
    position: absolute;
    inset: 0;
    background: rgba(8,10,15,0.25);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-fast);
}
.base-card:hover .card-actions {
    opacity: 1;
}
.action-circle {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition-fast);
}
.action-circle:hover {
    background: var(--brand-blue);
    color: #fff;
    transform: scale(1.1);
}
.action-rect {
    width: calc(100% - 32px);
    position: absolute;
    bottom: 16px;
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
}
.action-rect:hover {
    background: var(--brand-dark);
    color: #fff;
}

/* BLOK 1: SHOWROOM VİTRİNİ */
.showroom-card {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}
.showroom-card:hover {
    border-color: rgba(0, 82, 204, 0.15);
    box-shadow: 0 12px 28px rgba(8,10,15,0.05);
}
.showroom-card .info-block {
    padding: 10px 2px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.showroom-card .brand {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--brand-blue);
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}
.showroom-card .title {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.35;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}
.showroom-card .specs-grid {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    border-top: 1px solid var(--border-light);
    padding-top: 8px;
}
.showroom-card .spec-pill {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 4px;
    border-radius: 5px;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
}
.showroom-card .spec-pill span {
    display: block;
    font-size: 8px;
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1px;
}
.showroom-card .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-top: auto;
}

/* BLOK 2: POPÜLER ÜRÜN GARAJI */
.popular-card {
    background: transparent;
    padding: 0;
}
.popular-card .card-img-holder {
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border-light);
    height: 160px;
}
.popular-card .info-block {
    padding: 10px 4px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.popular-card .category {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}
.popular-card .title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
}
.popular-card .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
}
.popular-card .price {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
}
.popular-card .trend-line {
    font-size: 10px;
    font-weight: 500;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* BLOK 3: KAMPANYALI ÜRÜNLER */
.promo-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px;
    position: relative;
}
.promo-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 10px 24px var(--accent-red-glow);
}
.promo-card .info-block {
    padding: 8px 2px 2px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.promo-card .title {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.35;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}
.promo-card .price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto;
    background: #fff5f5;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px dashed rgba(244,63,94,0.25);
}
.promo-card .price-new {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-red);
}
.promo-card .price-old {
    font-size: 11px;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 500;
}
.promo-card .stock-bar-wrap {
    margin-top: 8px;
}
.promo-card .stock-text {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 3px;
    text-transform: uppercase;
}
.promo-card .stock-bar {
    width: 100%;
    height: 3px;
    background: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
}
.promo-card .stock-fill {
    height: 100%;
    background: var(--accent-red);
    border-radius: 2px;
}

/* =========================================
   PREMIUM SPLIT BANNERS
   ========================================= */
.split-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 60px 0;
}
.banner-card {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px;
    color: #fff;
}
.banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(60deg, rgba(8,10,15,0.9) 0%, rgba(8,10,15,0.3) 100%);
    z-index: 1;
}
.banner-1 {
    background: url('https://images.unsplash.com/photo-1552671569-42b78a9c2186?q=80&w=1200&auto=format&fit=crop') center/cover;
}
.banner-2 {
    background: url('https://images.unsplash.com/photo-1620023602492-c2c62c93375c?q=80&w=1200&auto=format&fit=crop') center/cover;
}
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 360px;
}
.banner-content h3 {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
}
.banner-content p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.5;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 18px;
    transition: var(--transition-fast);
}
.link-arrow:hover {
    gap: 14px;
    color: var(--brand-blue);
}

/* Campaign countdown badge */
.campaign-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.15);
    color: var(--accent-red);
    font-size: 12px;
    font-weight: 700;
}

.campaign-countdown svg {
    flex-shrink: 0;
    stroke: var(--accent-red);
}

.countdown-text {
    white-space: nowrap;
}

/* =========================================
   STOREFRONT FEATURES / HIGHLIGHTS SECTION
   ========================================= */
.storefront-features-wrapper {
    margin-top: -65px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--surface-light, #ffffff);
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 30px rgba(8, 10, 15, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--brand-blue, #6366f1);
}
.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.06);
    color: var(--brand-blue, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}
.feature-card:hover .feature-icon-wrapper {
    background: var(--brand-blue, #6366f1);
    color: #fff;
}
.feature-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feature-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main, #0f172a);
    margin: 0;
}
.feature-info p {
    font-size: 12px;
    color: var(--text-muted, #64748b);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .storefront-features-wrapper {
        margin-top: -35px;
        margin-bottom: 20px;
    }
}

