* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0c4f8a;
    --primary-dark: #083963;
    --secondary: #f4b400;
    --danger: #d93025;
    --success: #18a957;
    --text: #1e293b;
    --muted: #6b7280;
    --border: #d8e0ea;
    --soft: #f4f7fb;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    --radius: 18px;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: linear-gradient(180deg, #f6f9fc 0%, #eef3f8 100%);
    line-height: 1.5;
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
}

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

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* TOP STRIP */
.top-strip {
    width: 100%;
    background: linear-gradient(90deg, #eef3f8 0%, #f9fbfd 100%);
    border-bottom: 1px solid #dbe4ee;
    font-size: 13px;
}

.top-strip-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.currency-box {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #4b5563;
    font-weight: 500;
    flex-wrap: wrap;
}

.currency-box strong {
    color: var(--primary);
}

.currency-box b {
    color: #0f172a;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-links a {
    color: #64748b;
    transition: 0.25s ease;
}

.top-links a:hover {
    color: var(--primary);
}

/* HEADER */
.site-header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid #e4ebf2;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.logo-area {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-badge {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, #1b75d0 100%);
    box-shadow: 0 14px 28px rgba(12, 79, 138, 0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 24px;
    line-height: 1.1;
    color: #0f172a;
}

.logo-text small {
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
}

.header-right {
    flex: 1;
    min-width: 0;
}

.welcome-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    color: #475569;
    margin-bottom: 10px;
    font-size: 14px;
    flex-wrap: wrap;
    text-align: right;
}

.welcome-bar i {
    color: var(--primary);
}

.logout-link {
    color: var(--danger);
    font-weight: 700;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 12px;
    color: #334155;
    font-weight: 500;
    transition: 0.25s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    background: #f1f6fb;
    color: var(--primary);
}

/* SEARCH PANEL */
.search-panel {
    width: 100%;
    padding: 18px 0 0;
}

.search-panel-inner {
    display: flex;
    gap: 0;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #0e5b9d 0%, #0a4476 100%);
    box-shadow: 0 16px 40px rgba(9, 63, 108, 0.18);
}

.search-icon-box {
    width: 72px;
    min-width: 72px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.search-fields {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    flex-wrap: wrap;
}

.field {
    min-width: 180px;
    flex: 0 0 auto;
}

.field-grow {
    flex: 1 1 320px;
    min-width: 260px;
}

.search-fields select,
.search-fields input {
    width: 100%;
    height: 46px;
    border: none;
    outline: none;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
}

.search-btn,
.promo-btn,
.cart-btn {
    height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transition: 0.25s ease;
    white-space: nowrap;
}

.search-btn {
    background: #e2ecf7;
    color: #083963;
}

.search-btn:hover {
    background: #d3e4f4;
}

.promo-btn {
    background: linear-gradient(135deg, #ffd54a 0%, #f4b400 100%);
    color: #3f2d00;
}

.promo-btn:hover {
    transform: translateY(-1px);
}

.cart-btn {
    background: linear-gradient(135deg, #ff5b4d 0%, #d93025 100%);
    color: #ffffff;
}

.cart-btn:hover {
    transform: translateY(-1px);
}

/* MAIN CONTENT */
.main-content {
    width: 100%;
    padding: 18px 0 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    width: 100%;
}

/* SIDEBAR */
.sidebar {
    min-width: 0;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sidebar-title {
    padding: 16px 18px;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    background: linear-gradient(180deg, #f7fafc 0%, #edf3f8 100%);
    border-bottom: 1px solid var(--border);
}

.category-accordion {
    list-style: none;
}

.category-item + .category-item {
    border-top: 1px solid #eef3f8;
}

.category-toggle {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #1e3a5f;
    font-weight: 700;
    background: #ffffff;
    transition: 0.25s ease;
}

.category-toggle:hover {
    background: #f7fbff;
    color: var(--primary);
}

.category-toggle-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-align: left;
}

.category-toggle-left i {
    width: 16px;
    text-align: center;
    color: #4f9bd1;
    font-size: 14px;
    flex-shrink: 0;
}

.category-caret {
    font-size: 12px;
    color: #6b7280;
    transition: transform 0.3s ease, color 0.25s ease;
    flex-shrink: 0;
}

.category-item.active .category-toggle {
    background: linear-gradient(180deg, #f7fbff 0%, #eef6fd 100%);
    color: var(--primary);
}

.category-item.active .category-caret {
    transform: rotate(180deg);
    color: var(--primary);
}

.subcategory-list {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    background: #fbfdff;
    transition: max-height 0.35s ease;
}

.category-item.active .subcategory-list {
    max-height: 420px;
}

.subcategory-list li + li {
    border-top: 1px solid #edf3f8;
}

.subcategory-list a {
    display: block;
    padding: 12px 18px 12px 46px;
    color: #4b5563;
    font-weight: 500;
    transition: 0.25s ease;
    position: relative;
}

.subcategory-list a::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #9fc5e8;
    transform: translateY(-50%);
    transition: 0.25s ease;
}

.subcategory-list a:hover {
    background: #f2f8fe;
    color: var(--primary);
    padding-left: 50px;
}

.subcategory-list a:hover::before {
    background: var(--primary);
}

.sidebar-cta {
    margin-top: 16px;
    width: 100%;
    min-height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff6a3d 0%, #ff4b1f 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 18px 30px rgba(255, 88, 38, 0.22);
    transition: 0.25s ease;
    text-align: center;
    padding: 0 16px;
}

.sidebar-cta:hover {
    transform: translateY(-2px);
}

/* CONTENT AREA */
.content-area {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* HERO */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 430px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
    background: #0f172a;
}

.slides {
    position: relative;
    min-height: 430px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 12, 27, 0.78) 0%, rgba(2, 12, 27, 0.52) 42%, rgba(2, 12, 27, 0.18) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 58px 54px;
    color: #fff;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.slide-content h1,
.slide-content h2 {
    font-size: 42px;
    line-height: 1.12;
    margin-bottom: 16px;
    font-weight: 800;
}

.slide-content p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
}

.slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: 0.25s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #f4b400 0%, #ffd54f 100%);
    color: #342500;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
}

.slider-nav {
    position: absolute;
    inset: auto 18px 18px auto;
    display: flex;
    gap: 10px;
    z-index: 4;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-dots {
    position: absolute;
    left: 54px;
    bottom: 24px;
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    transition: 0.25s ease;
}

.dot.active {
    width: 34px;
    background: #f4b400;
}

/* SECTION */
.section-block,
.promo-banner-stack {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
    width: 100%;
}

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

.section-mini-title {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.section-head h3 {
    font-size: 28px;
    color: #0f172a;
    line-height: 1.15;
    font-weight: 800;
}

.section-link {
    color: var(--primary);
    font-weight: 700;
}

/* PROMO BANNERS */
.banner-stack-head {
    margin-bottom: 18px;
}

.promo-banner-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promo-wide-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: stretch;
    min-height: 210px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-wide-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.promo-wide-banner-content {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.promo-brand {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.promo-subtitle {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.95;
}

.promo-title {
    font-size: 46px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 12px;
}

.promo-note {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.88;
}

.promo-wide-banner-visual {
    position: relative;
    min-height: 210px;
    overflow: hidden;
}

.promo-wide-banner-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-purple {
    background: linear-gradient(135deg, #2e1d79 0%, #5b2bbd 45%, #9f37d8 100%);
    color: #ffffff;
}

.banner-dark {
    background: linear-gradient(135deg, #0c1e1a 0%, #102f26 50%, #062c46 100%);
    color: #ffffff;
}

.banner-light {
    background: linear-gradient(135deg, #dff0f9 0%, #ebf6ff 50%, #cfe7f7 100%);
    color: #10263b;
}

.banner-light .promo-note,
.banner-light .promo-subtitle {
    opacity: 0.92;
}

/* CAMPAIGN */
.campaign-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
    gap: 22px;
    box-shadow: var(--shadow);
}

.campaign-mini-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.campaign-left h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
}

.campaign-left p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.campaign-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bank-box {
    background: linear-gradient(180deg, #0e1728 0%, #101827 100%);
    color: #fff;
    border-radius: 18px;
    padding: 18px 16px;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}

.bank-box span {
    font-size: 18px;
    font-weight: 800;
}

.bank-box strong {
    color: #f4b400;
    font-size: 24px;
    line-height: 1;
}

/* PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    min-width: 0;
    border: 1px solid #e8eef4;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.1);
}

.product-image {
    position: relative;
    height: 220px;
    background: #f6f8fb;
}

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(12, 79, 138, 0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.product-body {
    padding: 18px;
}

.product-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.product-body h4 {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 700;
    min-height: 50px;
}

.product-body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    min-height: 68px;
}

.product-bottom {
    margin-top: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.product-price small {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-bottom: 4px;
}

.product-price strong {
    font-size: 24px;
    line-height: 1;
    color: #0f172a;
}

.product-btn {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: #f1f6fb;
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.25s ease;
}

.product-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* BRANDS */
.brand-strip {
    overflow: hidden;
    border-radius: 18px;
    background: #f8fbfe;
    border: 1px solid #edf3f8;
    padding: 20px 0;
    width: 100%;
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 18px;
    animation: brandScroll 22s linear infinite;
    width: max-content;
}

.brand-strip:hover .brand-track {
    animation-play-state: paused;
}

.brand-item {
    width: 180px;
    height: 86px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e8eef4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    flex-shrink: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

@keyframes brandScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* FOOTER */
.site-footer {
    width: 100%;
    margin-top: 32px;
    background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
    color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
    padding: 48px 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.contact-list li i {
    width: 18px;
    color: #f4b400;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .promo-title {
        font-size: 38px;
    }
}

@media (max-width: 1200px) {
    .campaign-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .header-inner,
    .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .welcome-bar,
    .main-nav {
        justify-content: flex-start;
        text-align: left;
    }

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

    .sidebar {
        order: 2;
    }

    .content-area {
        order: 1;
    }

    .slide-content {
        padding: 40px 28px 88px;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 32px;
    }

    .promo-wide-banner {
        grid-template-columns: 1fr;
    }

    .promo-wide-banner-visual {
        min-height: 220px;
    }

    .promo-title {
        font-size: 34px;
    }

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

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

@media (max-width: 768px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .search-panel-inner {
        flex-direction: column;
    }

    .search-icon-box {
        width: 100%;
        min-width: 100%;
        height: 56px;
    }

    .search-fields {
        flex-direction: column;
        align-items: stretch;
    }

    .field,
    .field-grow {
        min-width: 100%;
        width: 100%;
    }

    .search-btn,
    .promo-btn,
    .cart-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-slider,
    .slides {
        min-height: 400px;
    }

    .slider-dots {
        left: 28px;
        bottom: 20px;
    }

    .campaign-right {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 576px) {
    .logo-badge {
        width: 56px;
        height: 56px;
        font-size: 20px;
        border-radius: 16px;
    }

    .logo-text strong {
        font-size: 21px;
    }

    .sidebar-title {
        font-size: 20px;
    }

    .section-head h3,
    .campaign-left h3 {
        font-size: 24px;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 27px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slide-content {
        padding: 32px 20px 84px;
    }

    .category-toggle {
        padding-left: 14px;
        padding-right: 14px;
    }

    .subcategory-list a {
        padding-left: 40px;
    }

    .subcategory-list a::before {
        left: 24px;
    }

    .promo-wide-banner-content {
        padding: 22px 18px;
    }

    .promo-title {
        font-size: 24px;
    }

    .promo-subtitle {
        font-size: 15px;
    }
}

/* =========================
   PROMO BANNER OVERRIDE
   ========================= */

.promo-banner-stack {
    padding: 16px !important;
}

.promo-banner-stack .section-head,
.promo-banner-stack .banner-stack-head,
.promo-banner-stack .section-mini-title,
.promo-banner-stack h3 {
    display: none !important;
}

.promo-banner-stack .promo-banner-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.promo-banner-stack .promo-wide-banner {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 250px !important;
    height: 250px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #f3f6fa !important;
    box-shadow: none !important;
    border: 0 !important;
    transform: none !important;
    grid-template-columns: unset !important;
}

.promo-banner-stack .promo-wide-banner:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14) !important;
}

.promo-banner-stack .promo-wide-banner-content,
.promo-banner-stack .promo-brand,
.promo-banner-stack .promo-subtitle,
.promo-banner-stack .promo-title,
.promo-banner-stack .promo-note,
.promo-banner-stack .promo-wide-banner-visual {
    all: unset;
}

.promo-banner-stack .promo-wide-banner > img,
.promo-banner-stack .promo-wide-banner img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 18px !important;
}

.promo-banner-stack .promo-wide-banner::before,
.promo-banner-stack .promo-wide-banner::after {
    display: none !important;
}

@media (max-width: 992px) {
    .promo-banner-stack .promo-wide-banner {
        min-height: 220px !important;
        height: 220px !important;
    }
}

@media (max-width: 768px) {
    .promo-banner-stack {
        padding: 12px !important;
    }

    .promo-banner-stack .promo-banner-list {
        gap: 12px !important;
    }

    .promo-banner-stack .promo-wide-banner {
        min-height: 180px !important;
        height: 180px !important;
        border-radius: 16px !important;
    }

    .promo-banner-stack .promo-wide-banner > img,
    .promo-banner-stack .promo-wide-banner img {
        border-radius: 16px !important;
    }
}

@media (max-width: 576px) {
    .promo-banner-stack .promo-wide-banner {
        min-height: 150px !important;
        height: 150px !important;
    }
}

/* =========================
   PROMO BANNER OVERRIDE V2
   Beyaz dış card kalksın
   Banner iç yazılar geri gelsin
   ========================= */

.promo-banner-stack {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.promo-banner-stack .section-head,
.promo-banner-stack .banner-stack-head {
    display: none !important;
}

.promo-banner-stack .promo-banner-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.promo-banner-stack .promo-wide-banner {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr) !important;
    align-items: stretch !important;
    width: 100% !important;
    min-height: 250px !important;
    height: 250px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    border: 0 !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14) !important;
    transform: none !important;
    background: #162033 !important;
}

.promo-banner-stack .promo-wide-banner:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.18) !important;
}

.promo-banner-stack .promo-wide-banner-content {
    all: unset !important;
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 28px 28px 24px !important;
    color: #ffffff !important;
}

.promo-banner-stack .promo-brand {
    all: unset !important;
    display: block !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    color: inherit !important;
}

.promo-banner-stack .promo-subtitle {
    all: unset !important;
    display: block !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    opacity: 0.96 !important;
    color: inherit !important;
}

.promo-banner-stack .promo-title {
    all: unset !important;
    display: block !important;
    font-size: 44px !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    color: inherit !important;
}

.promo-banner-stack .promo-note {
    all: unset !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    opacity: 0.9 !important;
    color: inherit !important;
}

.promo-banner-stack .promo-wide-banner-visual {
    all: unset !important;
    position: relative !important;
    min-height: 250px !important;
    overflow: hidden !important;
    display: block !important;
}

.promo-banner-stack .promo-wide-banner-visual img,
.promo-banner-stack .promo-wide-banner > img,
.promo-banner-stack .promo-wide-banner img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

.promo-banner-stack .promo-wide-banner::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgba(7, 16, 32, 0.82) 0%, rgba(7, 16, 32, 0.58) 38%, rgba(7, 16, 32, 0.16) 100%) !important;
}

.promo-banner-stack .promo-wide-banner > * {
    position: relative !important;
    z-index: 2 !important;
}

.promo-banner-stack .banner-light {
    color: #10263b !important;
}

.promo-banner-stack .banner-light::before {
    background: linear-gradient(90deg, rgba(227, 241, 251, 0.92) 0%, rgba(227, 241, 251, 0.72) 38%, rgba(227, 241, 251, 0.16) 100%) !important;
}

@media (max-width: 1280px) {
    .promo-banner-stack .promo-title {
        font-size: 38px !important;
    }
}

@media (max-width: 992px) {
    .promo-banner-stack .promo-wide-banner {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        height: auto !important;
    }

    .promo-banner-stack .promo-wide-banner-content {
        padding: 24px 22px 18px !important;
    }

    .promo-banner-stack .promo-wide-banner-visual {
        min-height: 220px !important;
    }

    .promo-banner-stack .promo-title {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .promo-banner-stack .promo-banner-list {
        gap: 12px !important;
    }

    .promo-banner-stack .promo-wide-banner {
        border-radius: 16px !important;
    }

    .promo-banner-stack .promo-wide-banner-content {
        padding: 20px 18px 16px !important;
    }

    .promo-banner-stack .promo-wide-banner-visual {
        min-height: 180px !important;
    }

    .promo-banner-stack .promo-subtitle {
        font-size: 15px !important;
    }

    .promo-banner-stack .promo-title {
        font-size: 26px !important;
    }
}

@media (max-width: 576px) {
    .promo-banner-stack .promo-brand {
        font-size: 13px !important;
    }

    .promo-banner-stack .promo-subtitle {
        font-size: 14px !important;
    }

    .promo-banner-stack .promo-title {
        font-size: 22px !important;
    }

    .promo-banner-stack .promo-note {
        font-size: 12px !important;
    }

    .promo-banner-stack .promo-wide-banner-visual {
        min-height: 150px !important;
    }
}

/* =========================
   PROMO BANNER OVERRIDE V3
   Görsel tüm bannerı kaplasın
   ========================= */

.promo-banner-stack .promo-wide-banner {
    display: block !important;
    position: relative !important;
    min-height: 250px !important;
    height: 250px !important;
    overflow: hidden !important;
}

.promo-banner-stack .promo-wide-banner-content {
    position: absolute !important;
    inset: 0 !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 28px 28px 24px !important;
    max-width: 52% !important;
}

.promo-banner-stack .promo-wide-banner-visual {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    min-height: 100% !important;
    height: 100% !important;
    display: block !important;
    overflow: hidden !important;
}

.promo-banner-stack .promo-wide-banner-visual img,
.promo-banner-stack .promo-wide-banner > img,
.promo-banner-stack .promo-wide-banner img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.promo-banner-stack .promo-wide-banner::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(
            90deg,
            rgba(7, 16, 32, 0.82) 0%,
            rgba(7, 16, 32, 0.62) 34%,
            rgba(7, 16, 32, 0.22) 60%,
            rgba(7, 16, 32, 0.05) 100%
    ) !important;
}

.promo-banner-stack .banner-light::before {
    background: linear-gradient(
            90deg,
            rgba(235, 245, 252, 0.94) 0%,
            rgba(235, 245, 252, 0.76) 34%,
            rgba(235, 245, 252, 0.24) 60%,
            rgba(235, 245, 252, 0.06) 100%
    ) !important;
}

@media (max-width: 992px) {
    .promo-banner-stack .promo-wide-banner {
        min-height: 220px !important;
        height: 220px !important;
    }

    .promo-banner-stack .promo-wide-banner-content {
        max-width: 68% !important;
        padding: 24px 22px 18px !important;
    }
}

@media (max-width: 768px) {
    .promo-banner-stack .promo-wide-banner {
        min-height: 180px !important;
        height: 180px !important;
    }

    .promo-banner-stack .promo-wide-banner-content {
        max-width: 82% !important;
        padding: 20px 18px 16px !important;
    }
}

@media (max-width: 576px) {
    .promo-banner-stack .promo-wide-banner {
        min-height: 150px !important;
        height: 150px !important;
    }

    .promo-banner-stack .promo-wide-banner-content {
        max-width: 90% !important;
        padding: 16px 14px 14px !important;
    }
}

/* =========================
   SIDEBAR PROMO STACK OVERRIDE
   Toplu Sipariş Oluştur yerine
   dikey banner alanları
   ========================= */

.sidebar-cta {
    display: none !important;
}

.sidebar-promo-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 16px !important;
}

.sidebar-promo-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 270px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #e9eef5 !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.sidebar-promo-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.16) !important;
}

.sidebar-promo-card img {
    width: 100% !important;
    height: 100% !important;
    min-height: 270px !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.sidebar-promo-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(
            180deg,
            rgba(10, 22, 40, 0.04) 0%,
            rgba(10, 22, 40, 0.08) 48%,
            rgba(10, 22, 40, 0.58) 100%
    ) !important;
}

.sidebar-promo-caption {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 18px 14px 16px !important;
    color: #ffffff !important;
}

.sidebar-promo-caption strong {
    display: block !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.4px !important;
    margin-bottom: 6px !important;
}

.sidebar-promo-caption small {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    opacity: 0.96 !important;
}

.sidebar-promo-card-light .sidebar-promo-overlay {
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.04) 48%,
            rgba(255, 255, 255, 0.90) 100%
    ) !important;
}

.sidebar-promo-card-light .sidebar-promo-caption {
    color: #e31b23 !important;
}

.sidebar-promo-card-light .sidebar-promo-caption small {
    color: #24364f !important;
}

@media (max-width: 992px) {
    .sidebar-promo-stack {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .sidebar-promo-card,
    .sidebar-promo-card img {
        min-height: 220px !important;
    }

    .sidebar-promo-caption strong {
        font-size: 20px !important;
    }
}

@media (max-width: 768px) {
    .sidebar-promo-stack {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .sidebar-promo-card,
    .sidebar-promo-card img {
        min-height: 240px !important;
    }
}

@media (max-width: 576px) {
    .sidebar-promo-card,
    .sidebar-promo-card img {
        min-height: 220px !important;
    }

    .sidebar-promo-caption {
        padding: 16px 12px 14px !important;
    }

    .sidebar-promo-caption strong {
        font-size: 20px !important;
    }

    .sidebar-promo-caption small {
        font-size: 13px !important;
    }
}

/* =========================
   FOOTER REFERENCE OVERRIDE
   ========================= */

.site-footer.site-footer-ref {
    margin-top: 28px !important;
    background: transparent !important;
    color: #1f2b3d !important;
}

.site-footer.site-footer-ref .container {
    max-width: 1400px !important;
}

.site-footer-ref .footer-top-links-box {
    background: #eef2f5 !important;
    border: 1px solid #d8e0e8 !important;
    border-radius: 8px !important;
    padding: 14px 16px 16px !important;
    box-shadow: none !important;
}

.site-footer-ref .footer-link-columns {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: start !important;
}

.site-footer-ref .footer-link-col h4 {
    margin: 0 0 8px !important;
    color: #d60000 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.site-footer-ref .footer-link-col ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer-ref .footer-link-col li {
    margin: 0 0 4px !important;
    padding: 0 !important;
}

.site-footer-ref .footer-link-col a {
    color: #30465f !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.site-footer-ref .footer-link-col a:hover {
    color: #0c4f8a !important;
}

.site-footer-ref .footer-product-count {
    margin-top: 18px !important;
    color: #202938 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.site-footer-ref .footer-product-count strong {
    color: #111827 !important;
    font-weight: 800 !important;
}

.site-footer-ref .footer-bank-logos {
    margin-top: 14px !important;
    background: #ffffff !important;
    border: 1px solid #e4e9ef !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
}

.site-footer-ref .footer-bank-logos span {
    color: #22334a !important;
    font-size: 17px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 0.2px !important;
    white-space: nowrap !important;
}

.site-footer-ref .footer-bottom-panel {
    margin-top: 14px !important;
    background: linear-gradient(180deg, #0f4c83 0%, #0b3f6d 100%) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr) !important;
    color: #ffffff !important;
}

.site-footer-ref .footer-bottom-left,
.site-footer-ref .footer-bottom-right {
    padding: 16px 18px !important;
}

.site-footer-ref .footer-bottom-left p,
.site-footer-ref .footer-bottom-right p,
.site-footer-ref .footer-bottom-right h5 {
    margin: 0 0 4px !important;
    color: #ffffff !important;
}

.site-footer-ref .footer-bottom-left p {
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.site-footer-ref .footer-bottom-left strong {
    font-weight: 800 !important;
}

.site-footer-ref .footer-vat-note {
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.site-footer-ref .footer-vat-note i {
    font-size: 16px !important;
    color: #ffffff !important;
}

.site-footer-ref .footer-bottom-right {
    text-align: right !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.site-footer-ref .footer-bottom-right h5 {
    font-size: 16px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

.site-footer-ref .footer-bottom-right p {
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.site-footer-ref .footer-copyright {
    margin-top: 14px !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    font-weight: 700 !important;
}

@media (max-width: 1200px) {
    .site-footer-ref .footer-link-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 992px) {
    .site-footer-ref .footer-bottom-panel {
        grid-template-columns: 1fr !important;
    }

    .site-footer-ref .footer-bottom-right {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .site-footer-ref .footer-link-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    .site-footer-ref .footer-bank-logos {
        gap: 12px !important;
        justify-content: flex-start !important;
    }

    .site-footer-ref .footer-bank-logos span {
        font-size: 15px !important;
    }
}

@media (max-width: 576px) {
    .site-footer-ref .footer-link-columns {
        grid-template-columns: 1fr !important;
    }

    .site-footer-ref .footer-top-links-box {
        padding: 12px !important;
    }

    .site-footer-ref .footer-bottom-left,
    .site-footer-ref .footer-bottom-right {
        padding: 14px !important;
    }
}

/* =========================
   LAYOUT ALIGNMENT OVERRIDE
   Header / Search / Main tam hizalama
   ========================= */

:root {
    --site-max-width: 1600px;
    --site-gutter: 20px;
}

html,
body {
    overflow-x: hidden !important;
}

.container {
    max-width: var(--site-max-width) !important;
    width: 100% !important;
    padding-left: var(--site-gutter) !important;
    padding-right: var(--site-gutter) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Üst bar da aynı gridde dursun */
.top-strip .container,
.site-header .container,
.search-panel .container,
.main-content .container,
.site-footer .container {
    max-width: var(--site-max-width) !important;
    padding-left: var(--site-gutter) !important;
    padding-right: var(--site-gutter) !important;
}

/* Header hizası */
.site-header {
    overflow: visible !important;
}

.header-inner {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 28px !important;
    row-gap: 10px !important;
    padding-top: 22px !important;
    padding-bottom: 22px !important;
}

.logo-area {
    min-width: 0 !important;
    margin: 0 !important;
}

.logo {
    margin: 0 !important;
}

.header-right {
    min-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
}

/* Sağ üst satır tam sağa yaslansın */
.welcome-bar {
    width: 100% !important;
    margin-bottom: 12px !important;
    justify-content: flex-end !important;
    padding-right: 0 !important;
    gap: 12px !important;
}

/* Menü de sağa düzgün yaslansın */
.main-nav {
    width: 100% !important;
    justify-content: flex-end !important;
    gap: 12px !important;
}

.main-nav a {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* Arama barı ile içerik aynı başlangıç/bitişte dursun */
.search-panel {
    padding-top: 18px !important;
}

.search-panel .container {
    display: block !important;
}

.search-panel-inner {
    width: 100% !important;
    border-radius: 22px !important;
}

.search-icon-box {
    width: 84px !important;
    min-width: 84px !important;
    flex: 0 0 84px !important;
}

.search-fields {
    flex-wrap: nowrap !important;
    gap: 12px !important;
    padding: 12px !important;
}

.field {
    min-width: 200px !important;
}

.field-grow {
    flex: 1 1 auto !important;
    min-width: 320px !important;
}

.search-btn,
.promo-btn,
.cart-btn {
    flex: 0 0 auto !important;
}

/* Ana grid tam otursun */
.main-content {
    padding-top: 20px !important;
}

.content-grid {
    grid-template-columns: 330px minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: start !important;
}

/* Sol kolon ile arama başlangıcı daha dengeli */
.sidebar {
    width: 100% !important;
}

.content-area {
    width: 100% !important;
    min-width: 0 !important;
}

/* Slider tam sağ blok ölçüsünü alsın */
.hero-slider,
.promo-banner-stack,
.section-block {
    width: 100% !important;
    margin: 0 !important;
}

/* Banner ve slider sağ/sol kırpılmasın */
.hero-slider {
    min-height: 500px !important;
}

.slides {
    min-height: 500px !important;
}

/* Footer da aynı genişlikte aksın */
.site-footer.site-footer-ref {
    margin-top: 28px !important;
}

.site-footer-ref .footer-top-links-box,
.site-footer-ref .footer-bank-logos,
.site-footer-ref .footer-bottom-panel {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Büyük ekranlarda referans gibi daha geniş yapı */
@media (min-width: 1500px) {
    :root {
        --site-max-width: 1650px;
        --site-gutter: 24px;
    }

    .content-grid {
        grid-template-columns: 350px minmax(0, 1fr) !important;
        gap: 24px !important;
    }

    .hero-slider,
    .slides {
        min-height: 520px !important;
    }
}

/* 1200 altı düzen */
@media (max-width: 1200px) {
    .search-fields {
        flex-wrap: wrap !important;
    }

    .field {
        min-width: 180px !important;
    }

    .field-grow {
        min-width: 260px !important;
    }

    .content-grid {
        grid-template-columns: 290px minmax(0, 1fr) !important;
    }
}

/* Tablet */
@media (max-width: 992px) {
    :root {
        --site-gutter: 16px;
    }

    .header-inner {
        grid-template-columns: 1fr !important;
        row-gap: 14px !important;
    }

    .welcome-bar,
    .main-nav {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .search-fields {
        flex-wrap: wrap !important;
    }

    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .hero-slider,
    .slides {
        min-height: 430px !important;
    }
}

/* Mobil */
@media (max-width: 768px) {
    :root {
        --site-gutter: 14px;
    }

    .search-panel-inner {
        flex-direction: column !important;
    }

    .search-icon-box {
        width: 100% !important;
        min-width: 100% !important;
        height: 58px !important;
    }

    .search-fields {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .field,
    .field-grow,
    .search-btn,
    .promo-btn,
    .cart-btn {
        width: 100% !important;
        min-width: 100% !important;
    }

    .search-btn,
    .promo-btn,
    .cart-btn {
        justify-content: center !important;
    }

    .hero-slider,
    .slides {
        min-height: 380px !important;
    }
}

/* =========================
   HEADER RIGHT + FULL WIDTH FOOTER OVERRIDE
   ========================= */

/* Sağ üst hoş geldiniz alanı taşmasın / kesilmesin */
.site-header {
    overflow: visible !important;
}

.header-inner {
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
}

.header-right {
    min-width: 0 !important;
    width: 100% !important;
    overflow: visible !important;
}

.welcome-bar {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    padding-right: 8px !important;
    overflow: visible !important;
    white-space: nowrap !important;
}

.welcome-bar span {
    white-space: nowrap !important;
}

.logout-link {
    white-space: nowrap !important;
    display: inline-block !important;
    padding-right: 2px !important;
}

.main-nav {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    overflow: visible !important;
}

.main-nav a {
    white-space: nowrap !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* Geniş ekranlarda sağ blok biraz daha rahatlasın */
@media (min-width: 1200px) {
    .header-inner {
        column-gap: 18px !important;
    }

    .logo-area {
        margin-right: 4px !important;
    }

    .header-right {
        padding-left: 8px !important;
    }

    .welcome-bar {
        padding-right: 10px !important;
    }
}

/* Tablet ve altı zaten sola geçsin */
@media (max-width: 992px) {
    .welcome-bar,
    .main-nav {
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        white-space: normal !important;
        padding-right: 0 !important;
    }

    .welcome-bar span,
    .logout-link,
    .main-nav a {
        white-space: normal !important;
    }
}

/* =========================
   FOOTER FULL WIDTH OVERRIDE
   ========================= */

.site-footer.site-footer-ref {
    width: 100% !important;
    margin-top: 28px !important;
    padding: 0 !important;
}

.site-footer.site-footer-ref .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Footer bloklarını tam genişliğe taşı */
.site-footer-ref .footer-top-links-box,
.site-footer-ref .footer-bank-logos,
.site-footer-ref .footer-bottom-panel {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* İç boşlukları koru */
.site-footer-ref .footer-top-links-box {
    padding: 18px 32px 18px !important;
}

.site-footer-ref .footer-bank-logos {
    padding: 14px 32px !important;
}

.site-footer-ref .footer-bottom-left,
.site-footer-ref .footer-bottom-right {
    padding: 18px 32px !important;
}

/* Footer alt paneli tam genişlikte ve düzgün ayrılsın */
.site-footer-ref .footer-bottom-panel {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .site-footer-ref .footer-bottom-panel {
        grid-template-columns: 1fr !important;
    }

    .site-footer-ref .footer-bottom-right {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .site-footer-ref .footer-top-links-box,
    .site-footer-ref .footer-bank-logos {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .site-footer-ref .footer-bottom-left,
    .site-footer-ref .footer-bottom-right {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

/* =========================
   HEADER PROFESSIONAL OVERRIDE
   Bozmadan daha premium header
   ========================= */

:root {
    --header-shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.06);
    --header-shadow-card: 0 18px 42px rgba(12, 79, 138, 0.10);
    --header-line: #e7edf4;
    --header-soft-bg: #f7fafd;
}

/* Genel üst alan */
.top-strip {
    background: linear-gradient(180deg, #f8fbfe 0%, #eef4f9 100%) !important;
    border-bottom: 1px solid #dfe8f1 !important;
}

.top-strip-inner {
    min-height: 46px !important;
    gap: 16px !important;
}

.currency-box {
    gap: 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #34475f !important;
}

.currency-box span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.currency-box strong {
    font-size: 18px !important;
    line-height: 1 !important;
}

.top-links {
    gap: 22px !important;
}

.top-links a {
    position: relative !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #62758d !important;
}

.top-links a:hover {
    color: var(--primary) !important;
}

.top-links a::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -10px !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--primary) !important;
    border-radius: 999px !important;
    transition: width 0.25s ease !important;
}

.top-links a:hover::after {
    width: 100% !important;
}

/* Ana header */
.site-header {
    background:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,253,0.98) 100%) !important;
    border-bottom: 1px solid var(--header-line) !important;
    box-shadow: var(--header-shadow-soft) !important;
    position: relative !important;
    z-index: 20 !important;
}

.site-header::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(12,79,138,0.12) 50%, transparent 100%) !important;
}

.header-inner {
    padding-top: 24px !important;
    padding-bottom: 20px !important;
    align-items: center !important;
    column-gap: 28px !important;
    row-gap: 14px !important;
}

/* Logo alanı */
.logo-area {
    align-self: center !important;
}

.logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 6px 0 !important;
}

.logo-badge {
    width: 78px !important;
    height: 78px !important;
    border-radius: 24px !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    background:
            linear-gradient(135deg, #0d5ca0 0%, #1972ca 55%, #0b4c83 100%) !important;
    box-shadow:
            0 18px 34px rgba(12, 79, 138, 0.22),
            inset 0 1px 0 rgba(255,255,255,0.22) !important;
    position: relative !important;
    overflow: hidden !important;
}

.logo-badge::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 46%, transparent 100%) !important;
    pointer-events: none !important;
}

.logo-text strong {
    font-size: 27px !important;
    font-weight: 800 !important;
    letter-spacing: -0.3px !important;
    color: #0f172a !important;
}

.logo-text small {
    margin-top: 6px !important;
    font-size: 14px !important;
    color: #66788f !important;
    font-weight: 500 !important;
}

/* Sağ blok */
.header-right {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
}

/* Hoş geldiniz satırı */
.welcome-bar {
    min-height: 42px !important;
    padding: 0 0 6px !important;
    gap: 10px !important;
    font-size: 14px !important;
    color: #54677f !important;
}

.welcome-bar i {
    font-size: 15px !important;
    color: var(--primary) !important;
}

.welcome-bar strong {
    color: #1f3550 !important;
    font-weight: 800 !important;
}

.logout-link {
    color: #e53935 !important;
    font-weight: 800 !important;
    position: relative !important;
}

.logout-link::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -4px !important;
    width: 100% !important;
    height: 2px !important;
    background: rgba(229,57,53,0.18) !important;
    border-radius: 999px !important;
}

/* Menü */
.main-nav {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    padding-top: 4px !important;
}

.main-nav::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, #e6edf4 12%, #e6edf4 88%, transparent 100%) !important;
}

.main-nav a {
    min-height: 44px !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 14px !important;
    color: #28415e !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: -0.1px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    transition:
            background 0.25s ease,
            color 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease !important;
}

.main-nav a:hover {
    color: var(--primary) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%) !important;
    border-color: #dbe7f2 !important;
    box-shadow: 0 10px 22px rgba(12, 79, 138, 0.08) !important;
    transform: translateY(-1px) !important;
}

/* Search panel üst headerla daha bütün dursun */
.search-panel {
    padding-top: 18px !important;
}

.search-panel-inner {
    border-radius: 24px !important;
    box-shadow:
            0 18px 40px rgba(9, 63, 108, 0.16),
            inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

.search-icon-box {
    width: 86px !important;
    min-width: 86px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%) !important;
}

.search-icon-box i {
    font-size: 28px !important;
}

.search-fields {
    gap: 12px !important;
    padding: 12px !important;
}

.search-fields select,
.search-fields input {
    height: 52px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    border: 1px solid rgba(10,68,118,0.08) !important;
    box-shadow: inset 0 1px 2px rgba(15,23,42,0.04) !important;
}

.search-btn,
.cart-btn {
    height: 52px !important;
    border-radius: 14px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-size: 15px !important;
    box-shadow: 0 10px 24px rgba(15,23,42,0.10) !important;
}

.search-btn {
    background: linear-gradient(180deg, #ffffff 0%, #edf4fb 100%) !important;
    color: #0c4f8a !important;
}

.search-btn:hover {
    background: linear-gradient(180deg, #ffffff 0%, #e5f0fb 100%) !important;
}

.cart-btn {
    background: linear-gradient(135deg, #ff624f 0%, #e63f2d 100%) !important;
    color: #fff !important;
}

/* Büyük ekranlarda header daha iyi dağılsın */
@media (min-width: 1200px) {
    .header-inner {
        grid-template-columns: auto minmax(0, 1fr) !important;
    }

    .welcome-bar {
        padding-right: 6px !important;
    }

    .main-nav {
        padding-top: 8px !important;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .header-inner {
        grid-template-columns: 1fr !important;
        row-gap: 16px !important;
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .logo {
        justify-content: flex-start !important;
    }

    .welcome-bar,
    .main-nav {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .main-nav::before {
        display: none !important;
    }

    .main-nav {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .logo-badge {
        width: 66px !important;
        height: 66px !important;
        border-radius: 20px !important;
        font-size: 24px !important;
    }

    .logo-text strong {
        font-size: 23px !important;
    }

    .logo-text small {
        font-size: 13px !important;
    }

    .welcome-bar {
        flex-wrap: wrap !important;
        white-space: normal !important;
    }

    .main-nav a {
        min-height: 40px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .top-links {
        gap: 14px !important;
    }

    .currency-box {
        gap: 14px !important;
    }

    .search-fields select,
    .search-fields input,
    .search-btn,
    .cart-btn {
        height: 48px !important;
    }
}

/* =========================
   CATEGORY PAGE
   ========================= */

.category-page {
    padding-top: 16px !important;
}

.category-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    color: #6b7c8f;
    font-size: 14px;
}

.category-breadcrumb a {
    color: #5d7490;
    font-weight: 500;
}

.category-breadcrumb strong {
    color: #18324f;
    font-weight: 800;
}

.category-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

/* SOL FİLTRE */
.category-filter-panel {
    min-width: 0;
}

.filter-box {
    background: #ffffff;
    border: 1px solid #dbe5ef;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.filter-box-title {
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(180deg, #ff4b44 0%, #df1f1f 100%);
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.filter-group {
    padding: 14px 16px 16px;
    border-top: 1px solid #edf3f8;
}

.filter-group:first-of-type {
    border-top: 0;
}

.filter-group-head {
    min-height: 38px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    background: #eef3f7;
    color: #cf1010;
    font-size: 14px;
    font-weight: 800;
    border-radius: 10px;
    margin-bottom: 12px;
}

.filter-link-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 36px;
    padding: 0 4px;
    color: #1f466f;
    font-weight: 700;
    border-bottom: 1px solid #eef3f7;
    transition: color 0.2s ease;
}

.filter-link-list a i {
    color: #5d8fbc;
    margin-right: 6px;
}

.filter-link-list a span {
    color: #56728e;
    font-weight: 700;
}

.filter-link-list a:hover {
    color: var(--primary);
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    color: #314a63;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.filter-check input {
    width: 16px;
    height: 16px;
    accent-color: #d72626;
}

/* SAĞ İÇERİK */
.category-content-panel {
    min-width: 0;
}

.category-title-bar {
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #ff4b44 0%, #da1414 100%);
    box-shadow: 0 14px 28px rgba(218, 20, 20, 0.16);
    margin-bottom: 18px;
}

.category-title-bar h1 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.category-toolbar {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.compare-btn {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, #4d92d4 0%, #2168b0 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(33, 104, 176, 0.18);
}

.category-toolbar-right {
    color: #4d5d6d;
    font-size: 15px;
}

.category-toolbar-right strong {
    color: #182d45;
    font-size: 18px;
    font-weight: 800;
}

/* TABLO */
.product-table-wrap {
    background: #ffffff;
    border: 1px solid #dbe5ef;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.product-table-head {
    display: grid;
    grid-template-columns: 44px 84px 86px minmax(360px, 1fr) 90px 95px 95px 55px 55px 100px;
    align-items: center;
    gap: 0;
    min-height: 50px;
    padding: 0 14px;
    background: linear-gradient(180deg, #4e4e4e 0%, #2f2f2f 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.product-table-body {
    display: flex;
    flex-direction: column;
}

.product-table-row {
    display: grid;
    grid-template-columns: 44px 84px 86px minmax(360px, 1fr) 90px 95px 95px 55px 55px 100px;
    align-items: center;
    gap: 0;
    min-height: 92px;
    padding: 0 14px;
    border-top: 1px solid #ebf1f6;
    background: #ffffff;
    transition: background 0.2s ease;
}

.product-table-row:hover {
    background: #f8fbfe;
}

.col-order {
    color: #0d8d20;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
}

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

.col-thumb img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #dfe8f0;
    background: #fff;
}

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

.col-qty input {
    width: 52px;
    height: 36px;
    border: 1px solid #d6e0ea;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #233a55;
    background: #fff;
}

.col-name {
    padding: 12px 18px 12px 10px;
}

.product-name-link {
    color: #0d8d20;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    transition: color 0.2s ease;
}

.product-name-link:hover {
    color: #0b6e18;
}

.col-price,
.col-kdv,
.col-stock {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: #2a3746;
}

.price-green,
.stock-green {
    color: #0d8d20;
}

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

.add-cart-btn {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    background: linear-gradient(180deg, #55a4eb 0%, #2671b8 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(38, 113, 184, 0.16);
    white-space: nowrap;
}

.add-cart-btn i {
    margin-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .product-table-head,
    .product-table-row {
        grid-template-columns: 40px 78px 80px minmax(280px, 1fr) 80px 88px 88px 48px 48px 92px;
    }

    .product-name-link {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .category-layout {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .product-table-wrap {
        overflow-x: auto;
    }

    .product-table-head,
    .product-table-row {
        min-width: 1060px;
    }
}

@media (max-width: 992px) {
    .category-layout {
        grid-template-columns: 1fr;
    }

    .filter-box-title,
    .category-title-bar h1 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .category-breadcrumb {
        font-size: 13px;
    }

    .filter-box-title,
    .category-title-bar h1 {
        font-size: 20px;
    }

    .compare-btn {
        width: 100%;
        justify-content: center;
    }

    .category-toolbar {
        align-items: stretch;
    }
}

/* =========================
   CATEGORY PAGE SOFT UI OVERRIDE
   Daha zarif font / renk / ölçü
   ========================= */

.category-breadcrumb {
    font-size: 13px !important;
    color: #718399 !important;
    margin-bottom: 14px !important;
}

.category-breadcrumb a {
    color: #6b7f95 !important;
    font-weight: 500 !important;
}

.category-breadcrumb strong {
    color: #1c3550 !important;
    font-weight: 700 !important;
}

/* Sol filtre */
.filter-box {
    border-radius: 16px !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05) !important;
    border: 1px solid #dfe8f1 !important;
}

.filter-box-title {
    min-height: 48px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -0.2px !important;
    background: linear-gradient(180deg, #f85b57 0%, #de2c2c 100%) !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.filter-group {
    padding: 12px 14px 14px !important;
}

.filter-group-head {
    min-height: 34px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #c61e1e !important;
    background: #eef3f7 !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
}

.filter-link-list {
    gap: 2px !important;
}

.filter-link-list a {
    min-height: 34px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #264766 !important;
    border-bottom: 1px solid #edf2f7 !important;
}

.filter-link-list a span {
    font-size: 12px !important;
    color: #7890a7 !important;
    font-weight: 600 !important;
}

.filter-check {
    min-height: 30px !important;
    font-size: 13px !important;
    color: #3c536b !important;
    font-weight: 500 !important;
}

.filter-check input {
    width: 15px !important;
    height: 15px !important;
}

/* Sağ başlık */
.category-title-bar {
    min-height: 48px !important;
    border-radius: 14px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    background: linear-gradient(180deg, #f85b57 0%, #d91d1d 100%) !important;
    box-shadow: 0 10px 22px rgba(217, 29, 29, 0.12) !important;
    margin-bottom: 14px !important;
}

.category-title-bar h1 {
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: -0.2px !important;
}

/* Toolbar */
.category-toolbar {
    min-height: 42px !important;
    margin-bottom: 14px !important;
}

.compare-btn {
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 18px rgba(33, 104, 176, 0.14) !important;
}

.category-toolbar-right {
    font-size: 14px !important;
    color: #617284 !important;
}

.category-toolbar-right strong {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #20364e !important;
}

/* Tablo kapsayıcı */
.product-table-wrap {
    border-radius: 14px !important;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06) !important;
    border: 1px solid #dde7f0 !important;
}

/* Başlık satırı */
.product-table-head {
    min-height: 44px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    background: linear-gradient(180deg, #4a4a4a 0%, #343434 100%) !important;
}

/* Satırlar */
.product-table-row {
    min-height: 82px !important;
    padding: 0 12px !important;
    border-top: 1px solid #eef3f8 !important;
}

.col-order {
    font-size: 17px !important;
    font-weight: 700 !important;
}

.col-thumb img {
    width: 52px !important;
    height: 52px !important;
    border-radius: 8px !important;
}

.col-qty input {
    width: 48px !important;
    height: 34px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 7px !important;
}

.col-name {
    padding: 10px 14px 10px 8px !important;
}

.product-name-link {
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
    color: #158427 !important;
}

.col-price,
.col-kdv,
.col-stock {
    font-size: 14px !important;
    font-weight: 700 !important;
}

.add-cart-btn {
    min-height: 34px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 18px rgba(38, 113, 184, 0.12) !important;
}

/* Genel boşlukları biraz sakinleştir */
.category-layout {
    gap: 18px !important;
}

.category-content-panel,
.category-filter-panel {
    min-width: 0 !important;
}

/* Tablet */
@media (max-width: 992px) {
    .filter-box-title {
        font-size: 18px !important;
    }

    .category-title-bar h1 {
        font-size: 20px !important;
    }

    .product-table-head,
    .product-table-row {
        min-width: 1020px !important;
    }
}

/* Mobil */
@media (max-width: 576px) {
    .category-breadcrumb {
        font-size: 12px !important;
    }

    .filter-box-title {
        min-height: 44px !important;
        font-size: 17px !important;
    }

    .category-title-bar {
        min-height: 44px !important;
    }

    .category-title-bar h1 {
        font-size: 18px !important;
    }

    .compare-btn {
        min-height: 36px !important;
        font-size: 12px !important;
    }
}

