html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */

.product-breadcrumb {
    font-size: 13px;
}

    .product-breadcrumb a {
        text-decoration: none;
        color: #6b7280;
    }

.product-main-image-wrapper {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: 520px;
    object-fit: contain;
    padding: 25px;
}

.product-no-image {
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

    .product-no-image i {
        font-size: 60px;
    }

.product-badge {
    position: absolute;
    top: 18px;
    padding: 7px 11px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.product-badge-new {
    left: 18px;
    background: #111827;
    color: white;
}

.product-badge-discount {
    right: 18px;
    background: #dc2626;
    color: white;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.product-thumbnail {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    padding: 5px;
    cursor: pointer;
}

    .product-thumbnail.active {
        border: 2px solid #dc2626;
    }

    .product-thumbnail img {
        width: 100%;
        height: 85px;
        object-fit: contain;
    }

.product-info {
    padding-left: 20px;
}

.product-brand {
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 31px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 15px;
}

.product-short-description {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-code-area {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 0;
}

    .product-code-area div,
    .part-code-box {
        display: flex;
        flex-direction: column;
    }

        .product-code-area span,
        .part-code-box span {
            font-size: 11px;
            color: #9ca3af;
            text-transform: uppercase;
            font-weight: 700;
        }

        .product-code-area strong,
        .part-code-box strong {
            font-size: 14px;
        }

.product-part-codes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.part-code-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 12px;
    border-radius: 10px;
}

.product-price-area {
    margin-top: 25px;
}

.old-price {
    color: #9ca3af;
    font-size: 17px;
    text-decoration: line-through;
}

.current-price {
    color: #dc2626;
    font-size: 35px;
    font-weight: 800;
}

.vat-info {
    font-size: 12px;
    color: #6b7280;
}

.stock-area {
    margin-top: 15px;
}

.stock-in {
    color: #15803d;
    font-weight: 600;
}

.stock-out {
    color: #dc2626;
    font-weight: 600;
}

.stock-in span {
    font-weight: 400;
    font-size: 13px;
}

.compatibility-mini {
    margin-top: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px;
}

.compatibility-title {
    font-weight: 700;
    margin-bottom: 7px;
}

.compatibility-text {
    font-size: 13px;
    color: #6b7280;
    white-space: pre-line;
    max-height: 75px;
    overflow: hidden;
}

.product-purchase-box {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.quantity-box {
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    height: 52px;
}

.quantity-button {
    width: 42px;
    border: 0;
    background: #f9fafb;
    font-size: 20px;
}

.quantity-box input {
    width: 55px;
    border: 0;
    text-align: center;
    outline: none;
}

.btn-add-cart {
    flex: 1;
    min-height: 52px;
    border: 0;
    border-radius: 10px;
    background: #dc2626;
    color: white;
    font-size: 16px;
    font-weight: 700;
}

    .btn-add-cart:hover {
        background: #b91c1c;
    }

    .btn-add-cart.disabled {
        opacity: .6;
    }

.product-whatsapp-button {
    margin-top: 12px;
    min-height: 48px;
    border: 1px solid #16a34a;
    color: #15803d;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

    .product-whatsapp-button:hover {
        background: #f0fdf4;
        color: #15803d;
    }

.product-benefits {
    margin-top: 25px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    display: grid;
    gap: 15px;
}

    .product-benefits > div {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .product-benefits i {
        font-size: 23px;
        color: #dc2626;
    }

    .product-benefits span {
        display: flex;
        flex-direction: column;
        font-size: 12px;
        color: #6b7280;
    }

    .product-benefits strong {
        color: #111827;
        font-size: 13px;
    }

.product-detail-tabs {
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

    .product-detail-tabs .nav-tabs {
        border-bottom: 1px solid #e5e7eb;
        padding: 0 20px;
    }

    .product-detail-tabs .nav-link {
        color: #6b7280;
        border: 0;
        padding: 17px 20px;
        font-weight: 600;
    }

        .product-detail-tabs .nav-link.active {
            color: #dc2626;
            border-bottom: 2px solid #dc2626;
        }

    .product-detail-tabs .tab-content {
        padding: 30px;
    }

.product-description-content {
    line-height: 1.8;
}

    .product-description-content img {
        max-width: 100%;
        height: auto;
    }

.compatible-model-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

    .compatible-model-list > div {
        padding: 11px 13px;
        border: 1px solid #e5e7eb;
        border-radius: 9px;
        font-size: 14px;
    }

    .compatible-model-list i {
        color: #16a34a;
        margin-right: 5px;
    }


/* MOBILE */

@media (max-width: 991px) {

    .product-info {
        padding-left: 0;
    }

    .product-main-image-wrapper {
        min-height: 400px;
    }

    .product-main-image {
        height: 400px;
    }
}

@media (max-width: 576px) {

    .product-main-image-wrapper {
        min-height: 320px;
        border-radius: 12px;
    }

    .product-main-image {
        height: 320px;
        padding: 15px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-thumbnail img {
        height: 65px;
    }

    .product-title {
        font-size: 23px;
    }

    .current-price {
        font-size: 29px;
    }

    .product-part-codes {
        grid-template-columns: 1fr;
    }

    .product-purchase-box {
        flex-direction: column;
    }

    .quantity-box {
        width: 100%;
    }

    .quantity-button {
        flex: 1;
    }

    .quantity-box input {
        width: 75px;
    }

    .compatible-model-list {
        grid-template-columns: 1fr;
    }

    .product-detail-tabs .nav-tabs {
        padding: 0;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .product-detail-tabs .nav-link {
        white-space: nowrap;
        padding: 14px;
    }

    .product-detail-tabs .tab-content {
        padding: 18px;
    }
}
/* ============================================================
   EYMEN E-TİCARET - STOREFRONT
============================================================ */

:root {
    --shop-dark: #111827;
    --shop-dark-2: #1f2937;
    --shop-red: #d71920;
    --shop-red-dark: #b81419;
    --shop-gray: #6b7280;
    --shop-light: #f6f7f9;
    --shop-border: #e5e7eb;
}


/* ============================================================
   BODY
============================================================ */

body {
    margin: 0;
    background: #fff;
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
}


/* ============================================================
   TOP BAR
============================================================ */

.shop-topbar {
    background: var(--shop-dark);
    color: #fff;
    font-size: 13px;
}

.shop-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-topbar-left,
.shop-topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.shop-topbar i {
    margin-right: 5px;
}

.shop-topbar a {
    color: #fff;
    text-decoration: none;
}


/* ============================================================
   HEADER
============================================================ */

.shop-header {
    background: #fff;
    border-bottom: 1px solid var(--shop-border);
}

.shop-header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 30px;
}


/* ============================================================
   LOGO
============================================================ */

.shop-logo,
.shop-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    text-decoration: none;
    flex-shrink: 0;
}

.shop-logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-red);
    color: #fff;
    font-weight: 800;
    font-size: 25px;
}

.shop-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

    .shop-logo-text strong {
        font-size: 22px;
        font-weight: 800;
    }

    .shop-logo-text span {
        font-size: 13px;
        color: var(--shop-gray);
        margin-top: 4px;
    }


/* ============================================================
   ARAMA
============================================================ */

.shop-search {
    flex: 1;
    max-width: 565px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

    .shop-search input {
        width: 100%;
        height: 52px;
        border: 2px solid var(--shop-red);
        border-radius: 9px;
        padding: 0 58px 0 18px;
        outline: none;
        font-size: 14px;
    }

        .shop-search input:focus {
            box-shadow: 0 0 0 3px rgba(215, 25, 32, .08);
        }

    .shop-search button {
        position: absolute;
        width: 52px;
        height: 52px;
        right: 0;
        top: 0;
        border: 0;
        border-radius: 0 8px 8px 0;
        background: var(--shop-red);
        color: #fff;
        font-size: 19px;
    }

        .shop-search button:hover {
            background: var(--shop-red-dark);
        }


/* ============================================================
   HEADER ACTIONS
============================================================ */

.shop-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.shop-header-action {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: #111827;
}

    .shop-header-action > i,
    .shop-cart-icon > i {
        font-size: 27px;
    }

    .shop-header-action div {
        display: flex;
        flex-direction: column;
    }

    .shop-header-action small {
        color: var(--shop-gray);
        font-size: 11px;
    }

    .shop-header-action strong {
        font-size: 13px;
    }

.shop-cart-icon {
    position: relative;
}

.shop-cart-count {
    position: absolute;
    right: -9px;
    top: -9px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--shop-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================================================
   KATEGORİ MENÜSÜ
============================================================ */

.shop-category-nav {
    background: #fff;
    border-bottom: 1px solid var(--shop-border);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .04);
}

.shop-category-nav-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
}

    .shop-category-nav-inner::-webkit-scrollbar {
        display: none;
    }

.shop-category-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

    .shop-category-nav a:hover {
        color: var(--shop-red);
    }

.shop-category-nav .shop-all-categories {
    align-self: stretch;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--shop-red);
    color: #fff;
}

    .shop-category-nav .shop-all-categories:hover {
        color: #fff;
        background: var(--shop-red-dark);
    }


/* ============================================================
   MOBİL BUTON
============================================================ */

.shop-mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--shop-border);
    background: #fff;
    font-size: 24px;
}


/* ============================================================
   MOBİL ARAMA
============================================================ */

.shop-mobile-search {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

    .shop-mobile-search input {
        width: 100%;
        height: 46px;
        border: 1px solid var(--shop-border);
        border-radius: 8px;
        padding: 0 50px 0 14px;
        outline: none;
    }

    .shop-mobile-search button {
        width: 46px;
        height: 46px;
        position: absolute;
        right: 0;
        border: 0;
        border-radius: 0 8px 8px 0;
        background: var(--shop-red);
        color: #fff;
    }

.shop-mobile-links {
    display: flex;
    flex-direction: column;
}

    .shop-mobile-links a {
        color: #111827;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        padding: 12px 4px;
    }

        .shop-mobile-links a i {
            width: 25px;
        }


/* ============================================================
   FOOTER
============================================================ */

.shop-footer {
    margin-top: 70px;
    padding: 55px 0 0;
    background: var(--shop-dark);
    color: #d1d5db;
}

.shop-footer-logo {
    color: #fff;
    margin-bottom: 20px;
}

    .shop-footer-logo .shop-logo-text span {
        color: #9ca3af;
    }

.shop-footer-description {
    max-width: 360px;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
}

.shop-footer h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.shop-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-footer li {
    margin-bottom: 10px;
}

.shop-footer a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
}

    .shop-footer a:hover {
        color: #fff;
    }

.shop-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 13px;
    color: #9ca3af;
    font-size: 14px;
}

    .shop-footer-contact div {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

    .shop-footer-contact i {
        color: var(--shop-red);
    }

.shop-footer-bottom {
    margin-top: 45px;
    min-height: 70px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #9ca3af;
    font-size: 13px;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991px) {

    .shop-header-inner {
        min-height: 76px;
        gap: 14px;
    }

    .shop-mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .shop-search {
        display: none;
    }

    .shop-category-nav {
        display: none;
    }

    .shop-logo {
        margin-right: auto;
    }

    .shop-logo-mark {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .shop-logo-text strong {
        font-size: 18px;
    }

    .shop-header-actions {
        gap: 12px;
    }
}


@media (max-width: 576px) {

    .shop-topbar-inner {
        min-height: 34px;
    }

    .shop-topbar-left span {
        font-size: 11px;
    }

    .shop-topbar-right {
        display: none;
    }

    .shop-logo-text span {
        display: none;
    }

    .shop-logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }

    .shop-logo-text strong {
        font-size: 16px;
    }

    .shop-header-inner {
        gap: 9px;
    }

    .shop-mobile-menu-btn {
        width: 38px;
        height: 38px;
    }

    .shop-cart-icon > i {
        font-size: 25px;
    }

    .shop-footer {
        margin-top: 45px;
        padding-top: 40px;
    }

    .shop-footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }
}
/* ============================================================
   ÜRÜN ARAMA SAYFASI
============================================================ */

.search-page {
    padding: 28px 0 60px;
    background: #f7f8fa;
    min-height: 600px;
}


/* BREADCRUMB */

.search-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 13px;
    color: #6b7280;
}

    .search-breadcrumb a {
        color: #6b7280;
        text-decoration: none;
    }

        .search-breadcrumb a:hover {
            color: #d71920;
        }

    .search-breadcrumb i {
        font-size: 10px;
    }


/* ============================================================
   HEADER
============================================================ */

.search-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .search-page-header h1 {
        margin: 0 0 7px;
        font-size: 28px;
        font-weight: 800;
        color: #111827;
    }

    .search-page-header p {
        margin: 0;
        color: #6b7280;
        font-size: 14px;
    }


/* ============================================================
   ARAMA
============================================================ */

.search-page-form {
    display: flex;
    max-width: 760px;
    position: relative;
    margin-bottom: 30px;
}

    .search-page-form input {
        width: 100%;
        height: 52px;
        background: #fff;
        border: 1px solid #d1d5db;
        border-radius: 9px;
        padding: 0 130px 0 16px;
        outline: none;
        font-size: 14px;
    }

        .search-page-form input:focus {
            border-color: #d71920;
            box-shadow: 0 0 0 3px rgba(215, 25, 32, .07);
        }

    .search-page-form button {
        position: absolute;
        right: 0;
        top: 0;
        height: 52px;
        min-width: 115px;
        border: 0;
        border-radius: 0 9px 9px 0;
        background: #d71920;
        color: #fff;
        font-weight: 700;
    }

        .search-page-form button:hover {
            background: #b81419;
        }


/* ============================================================
   GRID
============================================================ */

.search-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* ============================================================
   ÜRÜN KARTI
============================================================ */

.search-product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .search-product-card:hover {
        transform: translateY(-3px);
        border-color: #d1d5db;
        box-shadow: 0 10px 28px rgba(0,0,0,.08);
    }


/* ============================================================
   RESİM
============================================================ */

.search-product-image {
    position: relative;
    display: flex;
    width: 100%;
    height: 260px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    overflow: hidden;
}

    .search-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 15px;
        transition: transform .25s ease;
    }

.search-product-card:hover
.search-product-image img {
    transform: scale(1.04);
}


/* ============================================================
   GÖRSEL YOK
============================================================ */

.search-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
}

    .search-no-image i {
        font-size: 42px;
    }

    .search-no-image span {
        font-size: 12px;
    }


/* ============================================================
   BADGE
============================================================ */

.search-product-badges {
    position: absolute;
    left: 10px;
    top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .search-product-badges span {
        display: inline-flex;
        padding: 5px 8px;
        border-radius: 5px;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
    }

.badge-new {
    background: #111827;
}

.badge-discount {
    background: #d71920;
}


/* ============================================================
   İÇERİK
============================================================ */

.search-product-content {
    padding: 16px;
}

.search-product-brand {
    color: #d71920;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
}

.search-product-name {
    display: block;
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 42px;
    margin-bottom: 11px;
}

    .search-product-name:hover {
        color: #d71920;
    }


/* ============================================================
   KODLAR
============================================================ */

.search-product-codes {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 40px;
    color: #6b7280;
    font-size: 11px;
}

    .search-product-codes strong {
        color: #374151;
    }


/* ============================================================
   FİYAT
============================================================ */

.search-product-price {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    margin-bottom: 9px;
}

    .search-product-price strong {
        color: #d71920;
        font-size: 21px;
        font-weight: 800;
    }

.search-old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 12px;
}


/* ============================================================
   STOK
============================================================ */

.search-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 13px;
    font-size: 12px;
    font-weight: 600;
}

    .search-stock.in-stock {
        color: #198754;
    }

    .search-stock.out-stock {
        color: #dc3545;
    }


/* ============================================================
   İNCELE BUTONU
============================================================ */

.search-product-detail-btn {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 7px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s ease;
}

    .search-product-detail-btn:hover {
        background: #d71920;
        color: #fff;
    }


/* ============================================================
   SONUÇ YOK
============================================================ */

.search-empty {
    min-height: 330px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    text-align: center;
}

.search-empty-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

    .search-empty-icon i {
        font-size: 28px;
        color: #9ca3af;
    }

.search-empty h2 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 10px;
}

.search-empty p {
    margin: 0 0 5px;
    color: #6b7280;
}

.search-empty span {
    color: #9ca3af;
    font-size: 13px;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199px) {

    .search-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 767px) {

    .search-page {
        padding-top: 20px;
    }

    .search-page-header h1 {
        font-size: 23px;
    }

    .search-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .search-product-image {
        height: 190px;
    }
}


@media (max-width: 480px) {

    .search-page-form input {
        padding-right: 55px;
    }

    .search-page-form button {
        min-width: 52px;
        width: 52px;
        font-size: 0;
    }

        .search-page-form button i {
            font-size: 17px;
        }

    .search-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .search-product-image {
        height: 160px;
    }

    .search-product-content {
        padding: 11px;
    }

    .search-product-name {
        font-size: 13px;
    }

    .search-product-price strong {
        font-size: 17px;
    }

    .search-product-codes {
        font-size: 10px;
    }
}
/* ============================================================
   SEPET
============================================================ */

.cart-page {
    background: #f7f8fa;
    min-height: 650px;
    padding: 28px 0 70px;
}

.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: #6b7280;
    font-size: 13px;
}

    .cart-breadcrumb a {
        color: #6b7280;
        text-decoration: none;
    }

    .cart-breadcrumb i {
        font-size: 10px;
    }

.cart-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

    .cart-title-row h1 {
        margin: 0 0 5px;
        color: #111827;
        font-size: 28px;
        font-weight: 800;
    }

    .cart-title-row p {
        margin: 0;
        color: #6b7280;
    }

.cart-clear-btn {
    border: 0;
    background: transparent;
    color: #dc3545;
    font-size: 13px;
}

.cart-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr 150px 130px 35px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.cart-item-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    color: #9ca3af;
    text-decoration: none;
}

    .cart-item-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 5px;
    }

    .cart-item-image i {
        font-size: 30px;
    }

.cart-item-name {
    display: block;
    color: #111827;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 9px;
}

    .cart-item-name:hover {
        color: #d71920;
    }

.cart-item-unit-price {
    color: #6b7280;
    font-size: 12px;
}

.cart-item-stock {
    margin-top: 5px;
    color: #198754;
    font-size: 11px;
}

.cart-item-quantity form {
    text-align: center;
}

.cart-qty-control {
    display: grid;
    grid-template-columns: 34px 50px 34px;
    justify-content: center;
}

    .cart-qty-control button,
    .cart-qty-control input {
        height: 36px;
        border: 1px solid #d1d5db;
        background: #fff;
        text-align: center;
    }

        .cart-qty-control button:first-child {
            border-radius: 6px 0 0 6px;
        }

        .cart-qty-control button:last-child {
            border-radius: 0 6px 6px 0;
        }

    .cart-qty-control input {
        border-left: 0;
        border-right: 0;
    }

.cart-update-btn {
    margin-top: 6px;
    border: 0;
    background: transparent;
    color: #d71920;
    font-size: 11px;
    font-weight: 600;
}

.cart-item-total {
    text-align: right;
    color: #d71920;
    font-size: 18px;
}

.cart-remove-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 6px;
    background: #fef2f2;
    color: #dc3545;
}

.cart-summary {
    position: sticky;
    top: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 23px;
}

    .cart-summary h3 {
        margin-bottom: 22px;
        font-size: 19px;
        font-weight: 800;
    }

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    color: #6b7280;
    font-size: 13px;
}

    .cart-summary-row strong {
        color: #374151;
    }

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    margin-top: 10px;
    padding-top: 18px;
}

    .cart-summary-total strong {
        color: #d71920;
        font-size: 23px;
    }

.cart-checkout-btn {
    width: 100%;
    height: 50px;
    margin-top: 22px;
    border: 0;
    border-radius: 8px;
    background: #d71920;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

    .cart-checkout-btn:disabled {
        opacity: .65;
    }

.cart-checkout-note {
    display: flex;
    gap: 7px;
    margin-top: 13px;
    color: #6b7280;
    font-size: 11px;
}

.cart-empty {
    min-height: 380px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cart-empty-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cart-empty-icon i {
        color: #9ca3af;
        font-size: 34px;
    }

.cart-empty h2 {
    font-size: 22px;
    font-weight: 800;
}

.cart-empty p {
    color: #6b7280;
}

.cart-continue-btn {
    margin-top: 10px;
    padding: 12px 22px;
    border-radius: 7px;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}


/* ============================================================
   SEPET RESPONSIVE
============================================================ */

@media (max-width: 991px) {

    .cart-item {
        grid-template-columns: 90px 1fr 120px;
    }

    .cart-item-quantity {
        grid-column: 2;
    }

    .cart-item-total {
        grid-column: 3;
    }

    .cart-remove-form {
        position: absolute;
        right: 10px;
        top: 10px;
    }
}


@media (max-width: 576px) {

    .cart-title-row {
        align-items: flex-start;
    }

        .cart-title-row h1 {
            font-size: 23px;
        }

    .cart-item {
        grid-template-columns: 85px 1fr;
        gap: 12px;
        padding: 12px;
    }

    .cart-item-image {
        height: 85px;
    }

    .cart-item-quantity {
        grid-column: 1 / -1;
    }

    .cart-item-total {
        grid-column: 1 / -1;
        text-align: right;
    }

    .cart-summary {
        position: static;
    }
}
/* ============================================================
   CHECKOUT
============================================================ */

.checkout-page {
    background: #f7f8fa;
    min-height: 700px;
}

.checkout-title {
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 800;
}

.checkout-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 18px;
}

    .checkout-card h3 {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 800;
    }

.checkout-payment {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
}

    .checkout-payment input {
        margin-top: 5px;
    }

    .checkout-payment div {
        display: flex;
        flex-direction: column;
    }

    .checkout-payment strong {
        color: #111827;
    }

    .checkout-payment span {
        color: #6b7280;
        font-size: 12px;
    }

.checkout-summary {
    position: sticky;
    top: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px;
}

    .checkout-summary h3 {
        font-size: 19px;
        font-weight: 800;
        margin-bottom: 20px;
    }

.checkout-product {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.checkout-product-image {
    width: 60px;
    height: 60px;
    border: 1px solid #eee;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .checkout-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.checkout-product strong {
    display: block;
    color: #111827;
    font-size: 12px;
}

.checkout-product small {
    color: #6b7280;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    color: #6b7280;
    font-size: 13px;
}

    .checkout-total-row strong {
        color: #374151;
    }

.checkout-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    margin-top: 12px;
    padding-top: 18px;
}

    .checkout-grand-total strong {
        color: #d71920;
        font-size: 23px;
    }

.checkout-submit {
    width: 100%;
    height: 52px;
    margin-top: 22px;
    border: 0;
    border-radius: 8px;
    background: #d71920;
    color: #fff;
    font-weight: 800;
}

    .checkout-submit:hover {
        opacity: .92;
    }

.checkout-security {
    margin-top: 12px;
    color: #6b7280;
    font-size: 11px;
    text-align: center;
}

.order-success {
    max-width: 650px;
    margin: 40px auto;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 45px 25px;
}

.order-success-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #dcfce7;
    color: #16a34a;
    font-size: 40px;
}

.order-success h1 {
    font-size: 28px;
    font-weight: 800;
}

.order-success-number,
.order-success-total {
    margin: 15px auto;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

    .order-success-number strong,
    .order-success-total strong {
        display: block;
        margin-top: 4px;
        font-size: 20px;
    }

    .order-success-total strong {
        color: #d71920;
    }


@media (max-width: 991px) {

    .checkout-summary {
        position: static;
    }
}

.order-success-number,
.order-success-total {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 15px auto;
    padding: 16px 18px;
    background: #f8f9fa;
    border-radius: 8px;
}

    .order-success-number span,
    .order-success-total span {
        font-size: 13px;
        color: #6b7280;
    }

    .order-success-number strong,
    .order-success-total strong {
        display: block;
        font-size: 20px;
        line-height: 1.4;
    }

    .order-success-total strong {
        color: #d71920;
    }
/* ============================================================
   SİPARİŞ TAKİP
   ============================================================ */

.order-tracking-page {
    padding: 60px 0 80px;
    min-height: 650px;
    background: #f7f7f7;
}

.order-tracking-wrapper {
    max-width: 620px;
    margin: 0 auto;
}

.order-tracking-header {
    text-align: center;
    margin-bottom: 30px;
}

    .order-tracking-header h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .order-tracking-header p {
        color: #777;
        line-height: 1.7;
        margin: 0;
    }

.order-tracking-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.order-tracking-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.order-tracking-input {
    position: relative;
}

    .order-tracking-input > i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #777;
        z-index: 2;
    }

    .order-tracking-input .form-control {
        min-height: 52px;
        padding-left: 44px;
        border-radius: 8px;
    }

.order-tracking-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
}

    .order-tracking-btn:hover {
        opacity: 0.9;
    }

.order-tracking-help {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #777;
    font-size: 14px;
}


/* ============================================================
   SİPARİŞ TAKİP SONUCU
   ============================================================ */

.order-result-page {
    padding: 45px 0 80px;
    background: #f7f7f7;
    min-height: 700px;
}

.order-result-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.order-result-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

    .order-result-header span {
        color: #777;
        font-size: 13px;
    }

    .order-result-header h1 {
        font-size: 27px;
        font-weight: 700;
        margin: 3px 0;
    }

    .order-result-header p {
        margin: 0;
        color: #777;
    }

.order-result-success-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.order-result-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 24px;
}

.order-result-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
}

    .order-result-card-title h2 {
        font-size: 19px;
        margin: 0;
        font-weight: 700;
    }

    .order-result-card-title span {
        color: #777;
        font-size: 14px;
    }

.customer-status-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
}

.status-new {
    background: #eef4ff;
    color: #2856a3;
}

.status-preparing {
    background: #fff6df;
    color: #86610c;
}

.status-shipping {
    background: #eef2ff;
    color: #3d4c9b;
}

.status-completed {
    background: #eaf8ee;
    color: #217638;
}

.status-cancelled {
    background: #fdeeee;
    color: #a72b2b;
}

.order-result-product {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 25px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

    .order-result-product:last-child {
        border-bottom: 0;
    }

.order-result-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .order-result-product-info span {
        color: #777;
        font-size: 13px;
    }

.order-result-product-quantity {
    color: #666;
}

.order-result-product-price {
    font-weight: 700;
}

.order-result-address {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .order-result-address span {
        color: #555;
    }

    .order-result-address p {
        margin: 5px 0 0;
        color: #777;
        line-height: 1.6;
    }

.order-shipping-info,
.order-payment-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

    .order-shipping-info > div,
    .order-payment-info > div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .order-shipping-info span,
    .order-payment-info span {
        color: #777;
        font-size: 13px;
    }

.order-shipping-track-btn {
    width: 100%;
    margin-top: 20px;
    min-height: 48px;
    border-radius: 7px;
    background: #111;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

    .order-shipping-track-btn:hover {
        color: #fff;
        opacity: 0.9;
    }

.order-result-summary {
    display: flex;
    flex-direction: column;
}

    .order-result-summary > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

.order-result-summary-total {
    border-top: 1px solid #ddd;
    margin-top: 8px;
    padding-top: 18px !important;
}

    .order-result-summary-total strong {
        font-size: 20px;
    }

.order-result-back-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 20px;
    border: 1px solid #222;
    border-radius: 7px;
    color: #222;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

    .order-result-back-btn:hover {
        background: #111;
        color: #fff;
    }


/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 767px) {

    .order-tracking-page {
        padding: 35px 0 50px;
    }

    .order-tracking-card {
        padding: 20px;
    }

    .order-tracking-header h1 {
        font-size: 27px;
    }

    .order-result-page {
        padding: 30px 0 50px;
    }

    .order-result-header {
        align-items: flex-start;
    }

        .order-result-header h1 {
            font-size: 20px;
            word-break: break-word;
        }

    .order-result-card {
        padding: 18px;
    }

    .order-result-product {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .order-result-product-quantity {
        font-size: 14px;
    }

    .order-shipping-info,
    .order-payment-info {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   ANA SAYFA
============================================================ */

.home-hero {
    background: #f5f5f5;
    padding: 25px 0;
}

    .home-hero .carousel-inner {
        border-radius: 18px;
        overflow: hidden;
    }

.home-slide {
    min-height: 440px;
    padding: 55px 70px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.home-slide-dark {
    background: radial-gradient( circle at 80% 50%, rgba(255,255,255,.12), transparent 35% ), #171717;
    color: #fff;
}

.home-slide-light {
    background: linear-gradient( 135deg, #eeeeee, #ffffff );
    color: #161616;
}

.home-slide-accent {
    background: linear-gradient( 135deg, #202020, #343434 );
    color: #fff;
}

.home-slide-content {
    position: relative;
    z-index: 2;
}

.home-slide-badge {
    display: inline-block;
    padding: 7px 13px;
    margin-bottom: 18px;
    background: #e31e24;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
}

.home-slide-content h1,
.home-slide-content h2 {
    max-width: 650px;
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 600;
}

    .home-slide-content h1 strong,
    .home-slide-content h2 strong {
        display: block;
        font-weight: 800;
    }

.home-slide-content p {
    max-width: 600px;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.7;
    opacity: .78;
}

.home-slide-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.home-primary-btn,
.home-secondary-btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-weight: 650;
    transition: .2s;
}

.home-primary-btn {
    background: #e31e24;
    color: #fff;
}

    .home-primary-btn:hover {
        background: #c8191f;
        color: #fff;
        transform: translateY(-1px);
    }

.home-secondary-btn {
    border: 1px solid rgba(255,255,255,.35);
    color: inherit;
}

.home-slide-light .home-secondary-btn {
    border-color: #ccc;
}

.home-secondary-btn:hover {
    color: inherit;
    background: rgba(255,255,255,.1);
}

.home-slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-slide-icon {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    font-size: 115px;
    transform: rotate(-8deg);
}

.home-slide-light .home-slide-icon {
    background: rgba(0,0,0,.05);
}

.home-hero .carousel-control-prev,
.home-hero .carousel-control-next {
    width: 55px;
}

.home-hero .carousel-indicators {
    margin-bottom: 18px;
}


/* ============================================================
   AVANTAJLAR
============================================================ */

.home-benefits {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.home-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.home-benefit-item {
    min-height: 75px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid #eee;
}

    .home-benefit-item:last-child {
        border-right: 0;
    }

.home-benefit-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    font-size: 21px;
}

.home-benefit-item > div:last-child {
    display: flex;
    flex-direction: column;
}

.home-benefit-item strong {
    font-size: 14px;
}

.home-benefit-item span {
    color: #888;
    font-size: 12px;
}


/* ============================================================
   GENEL ANA SAYFA SECTION
============================================================ */

.home-section {
    padding: 55px 0;
}

.home-products-section {
    background: #f8f8f8;
}

.home-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 25px;
}

.home-section-small-title {
    display: block;
    margin-bottom: 5px;
    color: #e31e24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.home-section-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 750;
}


/* ============================================================
   KATEGORİ
============================================================ */

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.home-category-card {
    min-height: 150px;
    padding: 22px;
    position: relative;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    color: #171717;
    text-decoration: none;
    transition: .2s;
}

    .home-category-card:hover {
        color: #171717;
        border-color: #d5d5d5;
        box-shadow: 0 10px 30px rgba(0,0,0,.06);
        transform: translateY(-3px);
    }

.home-category-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 9px;
    font-size: 18px;
}

.home-category-card strong {
    display: block;
    margin-bottom: 3px;
}

.home-category-card span {
    color: #888;
    font-size: 12px;
}

.home-category-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
}


/* ============================================================
   ÜRÜNLER
============================================================ */

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-product-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: .2s;
}

    .home-product-card:hover {
        box-shadow: 0 12px 32px rgba(0,0,0,.08);
        transform: translateY(-3px);
    }

.home-product-image {
    height: 245px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
    background: #fff;
}

    .home-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: .25s;
    }

.home-product-card:hover .home-product-image img {
    transform: scale(1.035);
}

.home-product-no-image {
    color: #ccc;
    font-size: 50px;
}

.home-product-badge,
.home-product-discount {
    position: absolute;
    top: 12px;
    padding: 5px 9px;
    border-radius: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.home-product-badge {
    left: 12px;
    background: #111;
}

.home-product-discount {
    right: 12px;
    background: #e31e24;
}

.home-product-body {
    padding: 16px;
    border-top: 1px solid #f1f1f1;
}

.home-product-brand {
    display: block;
    margin-bottom: 5px;
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
}

.home-product-name {
    min-height: 44px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #171717;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 650;
}

    .home-product-name:hover {
        color: #e31e24;
    }

.home-product-code {
    margin-top: 7px;
    color: #999;
    font-size: 11px;
}

.home-product-bottom {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.home-product-prices {
    display: flex;
    flex-direction: column;
}

    .home-product-prices del {
        color: #999;
        font-size: 12px;
    }

    .home-product-prices strong {
        color: #171717;
        font-size: 18px;
    }

.home-product-detail-btn {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #171717;
    border-radius: 7px;
    color: #fff;
    text-decoration: none;
}

    .home-product-detail-btn:hover {
        background: #e31e24;
        color: #fff;
    }


/* ============================================================
   KAMPANYA
============================================================ */

.home-campaign {
    padding: 25px 0 45px;
    background: #f8f8f8;
}

.home-campaign-inner {
    min-height: 280px;
    padding: 45px 55px;
    display: grid;
    grid-template-columns: 1fr 280px;
    align-items: center;
    overflow: hidden;
    background: #161616;
    border-radius: 16px;
    color: #fff;
}

.home-campaign-content {
    position: relative;
    z-index: 2;
}

    .home-campaign-content > span {
        color: #e31e24;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .home-campaign-content h2 {
        margin: 7px 0 12px;
        font-size: 34px;
        font-weight: 600;
    }

        .home-campaign-content h2 strong {
            font-weight: 800;
        }

    .home-campaign-content p {
        margin-bottom: 20px;
        color: #aaa;
    }

    .home-campaign-content a {
        min-height: 45px;
        padding: 0 18px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #e31e24;
        border-radius: 6px;
        color: #fff;
        text-decoration: none;
        font-weight: 650;
    }

.home-campaign-icon {
    text-align: center;
    color: rgba(255,255,255,.08);
    font-size: 180px;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991px) {

    .home-slide {
        min-height: 390px;
        padding: 45px;
        grid-template-columns: 1fr;
    }

    .home-slide-content h1,
    .home-slide-content h2 {
        font-size: 38px;
    }

    .home-slide-visual {
        display: none;
    }

    .home-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-benefit-item:nth-child(2) {
        border-right: 0;
    }

    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-campaign-inner {
        grid-template-columns: 1fr 180px;
    }

    .home-campaign-icon {
        font-size: 120px;
    }
}


@media (max-width: 575px) {

    .home-hero {
        padding: 12px 0;
    }

    .home-slide {
        min-height: 360px;
        padding: 32px 28px;
    }

    .home-slide-content h1,
    .home-slide-content h2 {
        font-size: 30px;
    }

    .home-slide-content p {
        font-size: 14px;
    }

    .home-primary-btn,
    .home-secondary-btn {
        width: 100%;
    }

    .home-benefits {
        padding: 5px 0;
    }

    .home-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-benefit-item {
        min-height: 85px;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .home-benefit-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 17px;
    }

    .home-benefit-item strong {
        font-size: 12px;
    }

    .home-benefit-item span {
        font-size: 10px;
    }

    .home-section {
        padding: 38px 0;
    }

    .home-section-header h2 {
        font-size: 23px;
    }

    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .home-category-card {
        min-height: 135px;
        padding: 16px;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .home-product-image {
        height: 170px;
        padding: 8px;
    }

    .home-product-body {
        padding: 11px;
    }

    .home-product-name {
        min-height: 42px;
        font-size: 13px;
    }

    .home-product-prices strong {
        font-size: 15px;
    }

    .home-product-detail-btn {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .home-campaign {
        padding-bottom: 30px;
    }

    .home-campaign-inner {
        min-height: 250px;
        padding: 30px 25px;
        display: block;
    }

    .home-campaign-content h2 {
        font-size: 27px;
    }

    .home-campaign-icon {
        display: none;
    }
}
/* ============================================================
   NIKEL ANA SAYFA
============================================================ */

.nikel-home-hero {
    background: #f4f4f4;
    padding: 22px 0;
}

.nikel-hero-grid {
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
    gap: 18px;
}


/* ============================================================
   SOL KATEGORİ
============================================================ */

.nikel-category-panel {
    background: #ffffff;
    border: 1px solid #e8e8e8;
}

.nikel-category-title {
    min-height: 50px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e31e24;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

    .nikel-category-title i {
        font-size: 18px;
    }

.nikel-category-list {
    display: flex;
    flex-direction: column;
}

    .nikel-category-list a {
        min-height: 39px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-bottom: 1px solid #eeeeee;
        color: #333;
        text-decoration: none;
        font-size: 13px;
        transition: .2s;
    }

        .nikel-category-list a:last-child {
            border-bottom: 0;
        }

        .nikel-category-list a:hover {
            padding-left: 19px;
            background: #fafafa;
            color: #e31e24;
        }

        .nikel-category-list a i {
            color: #aaa;
            font-size: 10px;
        }


/* ============================================================
   HERO
============================================================ */

.nikel-main-slider {
    min-width: 0;
}

    .nikel-main-slider .carousel-inner {
        overflow: hidden;
    }

.nikel-slide {
    min-height: 545px;
    padding: 55px 60px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    background: linear-gradient( 110deg, #151515 0%, #242424 60%, #343434 100% );
    color: #fff;
}

.nikel-slide-second {
    background: linear-gradient( 110deg, #252525, #101010 );
}

.nikel-slide-content {
    position: relative;
    z-index: 2;
}

.nikel-slide-brand {
    margin-bottom: 17px;
    color: #e31e24;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.nikel-slide h1,
.nikel-slide h2 {
    max-width: 650px;
    margin: 0;
    font-size: 46px;
    line-height: 1.05;
    font-weight: 400;
}

    .nikel-slide h1 strong,
    .nikel-slide h2 strong {
        display: block;
        margin-top: 8px;
        font-weight: 800;
    }

.nikel-slide p {
    max-width: 590px;
    margin: 22px 0 30px;
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
}

.nikel-slider-button {
    min-height: 48px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #e31e24;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .2s;
}

    .nikel-slider-button:hover {
        background: #c8171d;
        color: #fff;
    }

.nikel-slide-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nikel-hero-circle {
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.09);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.2);
    font-size: 120px;
}

.nikel-main-slider .carousel-control-prev,
.nikel-main-slider .carousel-control-next {
    width: 45px;
}


/* ============================================================
   3 KUTU
============================================================ */

.nikel-feature-categories {
    padding: 15px 0 35px;
    background: #f4f4f4;
}

.nikel-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-left: 273px;
}

.nikel-feature-box {
    min-height: 120px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #222;
    text-decoration: none;
    transition: .2s;
}

    .nikel-feature-box:hover {
        border-color: #d1d1d1;
        box-shadow: 0 8px 24px rgba(0,0,0,.05);
        color: #222;
    }

.nikel-feature-image {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    color: #e31e24;
    font-size: 28px;
}

.nikel-feature-box h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 750;
}

.nikel-feature-box p {
    margin: 0;
    color: #888;
    font-size: 12px;
}


/* ============================================================
   ÜRÜNLER
============================================================ */

.nikel-products-section {
    padding: 45px 0;
    background: #fff;
}

.nikel-product-tabs {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #ddd;
}

    .nikel-product-tabs button {
        padding: 13px 21px;
        background: transparent;
        border: 0;
        border-bottom: 3px solid transparent;
        color: #555;
        font-size: 15px;
        font-weight: 700;
    }

        .nikel-product-tabs button.active {
            color: #e31e24;
            border-bottom-color: #e31e24;
        }

.nikel-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.nikel-product-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: .2s;
}

    .nikel-product-card:hover {
        border-color: #d0d0d0;
        box-shadow: 0 10px 28px rgba(0,0,0,.07);
    }

.nikel-product-image-wrapper {
    position: relative;
}

.nikel-product-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    padding: 5px 9px;
    background: #e31e24;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.nikel-new-label {
    background: #171717;
}

.nikel-product-image {
    height: 245px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-decoration: none;
}

    .nikel-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: .2s;
    }

.nikel-product-card:hover .nikel-product-image img {
    transform: scale(1.035);
}

.nikel-no-image {
    color: #ccc;
    font-size: 55px;
}

.nikel-product-body {
    padding: 15px;
    border-top: 1px solid #eeeeee;
}

.nikel-product-brand {
    margin-bottom: 5px;
    color: #999;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.nikel-product-name {
    min-height: 44px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #222;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 650;
}

    .nikel-product-name:hover {
        color: #e31e24;
    }

.nikel-stock-code {
    margin-top: 9px;
    color: #8a8a8a;
    font-size: 10px;
}

    .nikel-stock-code strong {
        color: #555;
    }

.nikel-product-price {
    min-height: 54px;
    margin: 13px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .nikel-product-price del {
        color: #999;
        font-size: 11px;
    }

    .nikel-product-price > strong {
        color: #e31e24;
        font-size: 20px;
        font-weight: 800;
    }

.nikel-add-cart-form {
    margin: 0;
}

.nikel-add-cart-btn {
    width: 100%;
    min-height: 41px;
    border: 0;
    border-radius: 2px;
    background: #e31e24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: .2s;
}

    .nikel-add-cart-btn:hover {
        background: #c8171d;
    }

.nikel-product-actions {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #eee;
}

    .nikel-product-actions a {
        padding-top: 11px;
        color: #666;
        text-decoration: none;
        text-align: center;
        font-size: 11px;
    }

        .nikel-product-actions a:first-child {
            border-right: 1px solid #eee;
        }

        .nikel-product-actions a:hover {
            color: #e31e24;
        }


/* ============================================================
   MARKALAR
============================================================ */

.nikel-brands {
    padding: 35px 0;
    background: #f6f6f6;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

    .nikel-brands h2 {
        margin: 0 0 20px;
        font-size: 20px;
        font-weight: 750;
    }

.nikel-brand-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #fff;
    border-top: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
}

    .nikel-brand-list a {
        min-height: 75px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        color: #444;
        text-decoration: none;
        font-size: 13px;
        font-weight: 800;
        transition: .2s;
    }

        .nikel-brand-list a:hover {
            color: #e31e24;
            background: #fafafa;
        }


/* ============================================================
   AVANTAJLAR
============================================================ */

.nikel-benefits {
    padding: 30px 0;
    background: #fff;
}

.nikel-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.nikel-benefit {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid #e7e7e7;
}

    .nikel-benefit:last-child {
        border-right: 0;
    }

    .nikel-benefit > i {
        color: #e31e24;
        font-size: 29px;
    }

    .nikel-benefit > div {
        display: flex;
        flex-direction: column;
    }

    .nikel-benefit strong {
        font-size: 13px;
    }

    .nikel-benefit span {
        margin-top: 2px;
        color: #888;
        font-size: 11px;
    }


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199px) {

    .nikel-hero-grid {
        grid-template-columns: 225px minmax(0, 1fr);
    }

    .nikel-feature-grid {
        margin-left: 243px;
    }

    .nikel-slide {
        min-height: 500px;
        padding: 45px;
    }

        .nikel-slide h1,
        .nikel-slide h2 {
            font-size: 39px;
        }

    .nikel-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 991px) {

    .nikel-hero-grid {
        display: block;
    }

    .nikel-category-panel {
        display: none;
    }

    .nikel-feature-grid {
        margin-left: 0;
    }

    .nikel-slide {
        min-height: 430px;
        grid-template-columns: 1fr;
        padding: 45px;
    }

    .nikel-slide-visual {
        display: none;
    }

    .nikel-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nikel-brand-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .nikel-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nikel-benefit:nth-child(2) {
        border-right: 0;
    }
}


@media (max-width: 767px) {

    .nikel-feature-grid {
        grid-template-columns: 1fr;
    }

    .nikel-slide {
        min-height: 390px;
        padding: 35px 30px;
    }

        .nikel-slide h1,
        .nikel-slide h2 {
            font-size: 31px;
        }

        .nikel-slide p {
            font-size: 14px;
        }

    .nikel-brand-list {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 575px) {

    .nikel-home-hero {
        padding: 10px 0;
    }

    .nikel-slide {
        min-height: 355px;
        padding: 30px 25px;
    }

    .nikel-slide-brand {
        font-size: 11px;
    }

    .nikel-slide h1,
    .nikel-slide h2 {
        font-size: 27px;
    }

    .nikel-slider-button {
        width: 100%;
        justify-content: center;
    }

    .nikel-feature-categories {
        padding-bottom: 20px;
    }

    .nikel-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .nikel-product-image {
        height: 165px;
        padding: 8px;
    }

    .nikel-product-body {
        padding: 10px;
    }

    .nikel-product-name {
        min-height: 40px;
        font-size: 12px;
    }

    .nikel-product-price > strong {
        font-size: 16px;
    }

    .nikel-add-cart-btn {
        min-height: 38px;
        font-size: 11px;
    }

    .nikel-product-actions a {
        font-size: 10px;
    }

    .nikel-brand-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .nikel-benefit-grid {
        grid-template-columns: 1fr;
    }

    .nikel-benefit {
        border-right: 0;
        border-bottom: 1px solid #eee;
    }

        .nikel-benefit:last-child {
            border-bottom: 0;
        }
}
/* ============================================================
   NIKEL - MARKA LOGOLARI
============================================================ */

.nikel-brands {
    padding: 45px 0;
    background: #f7f7f7;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.nikel-brand-header {
    margin-bottom: 22px;
}

    .nikel-brand-header > span {
        display: block;
        margin-bottom: 4px;
        color: #e31e24;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .nikel-brand-header h2 {
        margin: 0;
        color: #222;
        font-size: 23px;
        font-weight: 750;
    }

.nikel-brand-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #fff;
    border-top: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
}

.nikel-brand-item {
    height: 110px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    color: #333;
    text-decoration: none;
    transition: .2s ease;
}

    .nikel-brand-item:hover {
        position: relative;
        z-index: 2;
        background: #fff;
        box-shadow: 0 8px 25px rgba(0,0,0,.08);
        transform: translateY(-2px);
    }

    .nikel-brand-item img {
        display: block;
        width: 100%;
        max-width: 135px;
        height: 65px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: .75;
        transition: .2s ease;
    }

    .nikel-brand-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.04);
    }

.nikel-brand-no-logo {
    width: 100%;
    color: #555;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}

.nikel-brand-item:hover .nikel-brand-no-logo {
    color: #e31e24;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199px) {

    .nikel-brand-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 991px) {

    .nikel-brand-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {

    .nikel-brand-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .nikel-brand-item {
        height: 95px;
        padding: 13px;
    }

        .nikel-brand-item img {
            max-width: 110px;
            height: 55px;
        }
}

@media (max-width: 575px) {

    .nikel-brands {
        padding: 32px 0;
    }

    .nikel-brand-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .nikel-brand-item {
        height: 90px;
    }
}
/* ============================================================
   NIKEL - MARKALAR
============================================================ */

.nikel-brands {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    padding: 45px 0;
    background: #ffffff;
}

.nikel-brand-header {
    margin-bottom: 25px;
}

    .nikel-brand-header > span {
        display: block;
        color: #e30613;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .5px;
        margin-bottom: 5px;
    }

    .nikel-brand-header h2 {
        margin: 0;
        color: #222;
        font-size: 26px;
        font-weight: 700;
    }

.nikel-brand-list {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
}

.nikel-brand-item {
    min-width: 0;
    min-height: 125px;
    padding: 15px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 7px;
    text-decoration: none !important;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

    .nikel-brand-item:hover {
        border-color: #e30613;
        box-shadow: 0 7px 22px rgba(0, 0, 0, .08);
        transform: translateY(-2px);
    }

    .nikel-brand-item img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 150px !important;
        height: 70px !important;
        object-fit: contain !important;
        margin: 0 auto 8px auto !important;
    }

.nikel-brand-name {
    display: block;
    width: 100%;
    margin-top: 5px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.nikel-brand-no-logo {
    width: 100%;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;
}

    .nikel-brand-no-logo i {
        color: #aaa;
        font-size: 30px;
        margin-bottom: 7px;
    }

    .nikel-brand-no-logo span {
        font-size: 14px;
        font-weight: 600;
    }


/* TABLET */

@media (max-width: 1199px) {

    .nikel-brand-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}


/* TABLET */

@media (max-width: 991px) {

    .nikel-brand-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


/* MOBIL */

@media (max-width: 767px) {

    .nikel-brand-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* KUCUK MOBIL */

@media (max-width: 575px) {

    .nikel-brands {
        padding: 30px 0;
    }

    .nikel-brand-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .nikel-brand-item {
        min-height: 110px;
        padding: 10px;
    }

        .nikel-brand-item img {
            height: 60px !important;
        }

    .nikel-brand-header h2 {
        font-size: 22px;
    }
}
/* ============================================================
   MARKA ÜRÜN SAYFASI
============================================================ */

.brand-page {
    padding: 40px 0 60px;
    background: #f7f7f7;
}

.brand-page-header {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 35px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.brand-page-logo {
    width: 220px;
    min-width: 220px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 7px;
}

    .brand-page-logo img {
        display: block;
        width: 100%;
        max-width: 180px;
        height: 90px;
        object-fit: contain;
    }

.brand-page-no-logo {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.brand-page-title {
    flex: 1;
}

.brand-page-label {
    margin-bottom: 5px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-page-title h1 {
    margin: 0 0 10px;
    color: #202020;
    font-size: 34px;
    font-weight: 750;
}

.brand-page-title p {
    max-width: 650px;
    margin: 0 0 15px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.brand-product-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    background: #f4f4f4;
    border-radius: 5px;
    color: #444;
    font-size: 13px;
    font-weight: 600;
}

.brand-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.brand-empty {
    padding: 70px 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
}

    .brand-empty > i {
        display: block;
        margin-bottom: 15px;
        color: #bbb;
        font-size: 55px;
    }

    .brand-empty h3 {
        margin-bottom: 8px;
        color: #333;
    }

    .brand-empty p {
        margin-bottom: 20px;
        color: #777;
    }

    .brand-empty a {
        display: inline-block;
        padding: 11px 20px;
        background: #e30613;
        border-radius: 5px;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
    }

@media (max-width: 1199px) {

    .brand-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {

    .brand-page-header {
        gap: 20px;
    }

    .brand-page-logo {
        width: 180px;
        min-width: 180px;
    }

    .brand-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .brand-page {
        padding-top: 20px;
    }

    .brand-page-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .brand-page-logo {
        width: 100%;
        min-width: 0;
    }

    .brand-page-title h1 {
        font-size: 27px;
    }
}

@media (max-width: 575px) {

    .brand-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}
/* ============================================================
   KATEGORİ ÜRÜN SAYFASI
============================================================ */

.category-page {
    padding: 40px 0 60px;
    background: #f7f7f7;
}

.category-page-header {
    margin-bottom: 35px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.category-page-label {
    margin-bottom: 5px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.category-page-title h1 {
    margin: 0 0 10px;
    color: #202020;
    font-size: 34px;
    font-weight: 750;
}

.category-page-title p {
    max-width: 700px;
    margin: 0 0 15px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.category-product-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    background: #f4f4f4;
    border-radius: 5px;
    color: #444;
    font-size: 13px;
    font-weight: 600;
}

.category-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.category-empty {
    padding: 70px 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
}

    .category-empty > i {
        display: block;
        margin-bottom: 15px;
        color: #bbb;
        font-size: 55px;
    }

    .category-empty h3 {
        margin-bottom: 8px;
        color: #333;
    }

    .category-empty p {
        margin-bottom: 20px;
        color: #777;
    }

    .category-empty a {
        display: inline-block;
        padding: 11px 20px;
        background: #e30613;
        border-radius: 5px;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
    }

@media (max-width: 1199px) {

    .category-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {

    .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .category-page {
        padding-top: 20px;
    }

    .category-page-header {
        padding: 20px;
    }

    .category-page-title h1 {
        font-size: 27px;
    }
}

@media (max-width: 575px) {

    .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}
/* ============================================================
   GELİŞMİŞ KATEGORİ SAYFASI
============================================================ */

.category-page {
    padding: 35px 0 60px;
    background: #f6f6f6;
}

.category-page-header {
    padding: 30px;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.category-page-label {
    margin-bottom: 6px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.category-page-header h1 {
    margin: 0 0 10px;
    color: #202020;
    font-size: 34px;
    font-weight: 750;
}

.category-page-header p {
    max-width: 750px;
    margin: 0 0 15px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.category-product-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    background: #f4f4f4;
    border-radius: 5px;
    color: #444;
    font-size: 13px;
    font-weight: 600;
}


/* ============================================================
   BÖLÜM BAŞLIKLARI
============================================================ */

.category-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

    .category-section-title span {
        display: block;
        margin-bottom: 3px;
        color: #e30613;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .category-section-title h2 {
        margin: 0;
        color: #222;
        font-size: 24px;
        font-weight: 700;
    }


/* ============================================================
   ALT KATEGORİLER
============================================================ */

.category-sub-section {
    margin-bottom: 35px;
}

.category-sub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.category-sub-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 90px;
    padding: 17px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    color: #333;
    text-decoration: none;
    transition: all .2s ease;
}

    .category-sub-card:hover {
        border-color: #e30613;
        box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
        color: #333;
        transform: translateY(-2px);
    }

.category-sub-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 50%;
    color: #e30613;
    font-size: 21px;
}

.category-sub-info {
    min-width: 0;
    flex: 1;
}

    .category-sub-info strong {
        display: block;
        margin-bottom: 3px;
        color: #222;
        font-size: 14px;
        font-weight: 700;
    }

    .category-sub-info span {
        color: #888;
        font-size: 12px;
    }

.category-sub-arrow {
    color: #aaa;
    font-size: 13px;
}


/* ============================================================
   ÜRÜNLER
============================================================ */

.category-products-section {
    margin-top: 20px;
}

.category-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.category-card-category {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    color: #888;
    font-size: 11px;
}

    .category-card-category i {
        color: #aaa;
    }

.nikel-product-brand a {
    color: inherit;
    text-decoration: none;
}

    .nikel-product-brand a:hover {
        color: #e30613;
    }


/* ============================================================
   BOŞ KATEGORİ
============================================================ */

.category-empty {
    padding: 70px 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
}

    .category-empty > i {
        display: block;
        margin-bottom: 15px;
        color: #bbb;
        font-size: 55px;
    }

    .category-empty h3 {
        margin-bottom: 8px;
        color: #333;
    }

    .category-empty p {
        margin-bottom: 20px;
        color: #777;
    }

    .category-empty a {
        display: inline-block;
        padding: 11px 20px;
        background: #e30613;
        border-radius: 5px;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
    }


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199px) {

    .category-sub-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {

    .category-sub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .category-page {
        padding-top: 20px;
    }

    .category-page-header {
        padding: 20px;
    }

        .category-page-header h1 {
            font-size: 27px;
        }
}

@media (max-width: 575px) {

    .category-sub-grid {
        grid-template-columns: 1fr;
    }

    .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .category-section-title h2 {
        font-size: 20px;
    }
}
/* ============================================================
   KATEGORİ BREADCRUMB
============================================================ */

.category-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
    color: #888;
    font-size: 13px;
}

    .category-breadcrumb a {
        color: #666;
        text-decoration: none;
    }

        .category-breadcrumb a:hover {
            color: #e30613;
        }

    .category-breadcrumb i {
        color: #bbb;
        font-size: 10px;
    }

    .category-breadcrumb span {
        color: #222;
        font-weight: 600;
    }

.nikel-category-group {
    border-bottom: 1px solid #eee;
}

.nikel-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
}

    .nikel-category-item:hover {
        color: #e30613;
    }

.nikel-subcategory-list {
    padding: 0 0 10px 16px;
}

.nikel-subcategory-item {
    display: block;
    padding: 6px 10px;
    color: #666;
    font-size: 13px;
    text-decoration: none;
}

    .nikel-subcategory-item:hover {
        color: #e30613;
    }
/* =========================================================
   ANA SAYFA KATEGORİ / ALT KATEGORİ
========================================================= */

.nikel-category-group {
    border-bottom: 1px solid #eeeeee;
}

    .nikel-category-group:last-child {
        border-bottom: 0;
    }

.nikel-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 14px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}

    .nikel-category-item:hover {
        color: #e30613;
        background: #fafafa;
    }

    .nikel-category-item i {
        font-size: 11px;
        flex-shrink: 0;
    }

.nikel-subcategory-list {
    padding: 0 10px 10px 18px;
    background: #fafafa;
}

.nikel-subcategory-item {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 6px 8px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all .2s ease;
}

    .nikel-subcategory-item i {
        font-size: 14px;
        color: #bbb;
    }

    .nikel-subcategory-item:hover {
        color: #e30613;
        padding-left: 12px;
    }

        .nikel-subcategory-item:hover i {
            color: #e30613;
        }
/* =========================================================
   SOL KATEGORİ MENÜSÜ
========================================================= */

.nikel-category-panel {
    background: #fff;
    border: 1px solid #e6e6e6;
    overflow: hidden;
}

.nikel-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 20px;
    background: #ed1c24;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

    .nikel-category-title i {
        font-size: 18px;
    }

.nikel-category-list {
    background: #fff;
}

.nikel-category-group {
    border-bottom: 1px solid #eeeeee;
}

    .nikel-category-group:last-child {
        border-bottom: 0;
    }


/* ANA KATEGORİ */

.nikel-category-item {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 16px;
    border: 0;
    background: #fff;
    color: #181818;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all .2s ease;
}

    .nikel-category-item:hover {
        background: #fafafa;
        color: #e30613;
    }

    .nikel-category-item i {
        font-size: 11px;
        color: #aaa;
        transition: transform .25s ease, color .2s ease;
    }


/* AÇIK ANA KATEGORİ */

.nikel-category-group.open
.nikel-category-item {
    color: #e30613;
}

.nikel-category-group.open
.nikel-category-arrow {
    transform: rotate(90deg);
    color: #e30613;
}


/* ALT KATEGORİLER
   İLK AÇILIŞTA KAPALI
*/

.nikel-subcategory-list {
    display: none;
    background: #fafafa;
    border-top: 1px solid #eeeeee;
    padding: 4px 14px 8px 22px;
}


/* AÇILDIĞINDA */

.nikel-category-group.open
.nikel-subcategory-list {
    display: block;
}


/* ALT KATEGORİ */

.nikel-subcategory-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 4px;
    border-bottom: 1px solid #eeeeee;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s ease;
}

    .nikel-subcategory-item:last-of-type {
        border-bottom: 0;
    }

    .nikel-subcategory-item:hover {
        color: #e30613;
        padding-left: 8px;
    }

.nikel-subcategory-dash {
    width: 14px;
    color: #bbb;
    flex-shrink: 0;
}

.nikel-subcategory-item > i {
    margin-left: auto;
    font-size: 10px;
    color: #aaa;
}


/* TÜM ÜRÜNLER */

.nikel-category-all-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    padding: 10px 5px;
    color: #e30613;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

    .nikel-category-all-link:hover {
        color: #bd0812;
    }


/* MOBİL */

@media (max-width: 767px) {

    .nikel-category-title {
        min-height: 50px;
        padding: 0 15px;
    }

    .nikel-category-item {
        min-height: 42px;
        padding: 9px 13px;
        font-size: 13px;
    }

    .nikel-subcategory-item {
        font-size: 12px;
    }
}
/* =========================================================
   ÇOK SATAN ETİKETİ
========================================================= */

.nikel-best-label {
    background: #111827 !important;
    color: #ffffff !important;
}
/* Kampanyalı ürün etiketi */
.nikel-campaign-label {
    background: #e30613 !important;
    color: #fff !important;
    font-weight: 800;
}
/* =========================================================
   ÜRÜN SEKMELERİ
========================================================= */

.nikel-product-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.nikel-tab-button {
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #333;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all .2s ease;
}

    .nikel-tab-button:hover {
        color: #e30613;
        border-color: #e30613;
    }

    .nikel-tab-button.active {
        background: #e30613;
        color: #fff;
        border-color: #e30613;
    }

.nikel-tab-content {
    display: none;
}

    .nikel-tab-content.active {
        display: block;
    }

/* =========================================================
   ÜRÜN SEKMELERİ
========================================================= */

.nikel-product-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.nikel-tab-button {
    border: 1px solid #e5e5e5;
    background: #ffffff;
    color: #333333;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all .2s ease;
}

    .nikel-tab-button:hover {
        color: #e30613;
        border-color: #e30613;
    }

.nikel-product-tabs {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.nikel-tab-button {
    position: relative;
    background: transparent;
    border: none;
    color: #333;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0;
}

    .nikel-tab-button:hover {
        color: #e30613;
    }

    .nikel-tab-button.active {
        background: transparent;
        color: #e30613;
    }

        .nikel-tab-button.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 3px;
            background: #e30613;
        }

.nikel-tab-content {
    display: none;
}

    .nikel-tab-content.active {
        display: block;
    }


.nikel-tab-content {
    display: none;
}

    .nikel-tab-content.active {
        display: block;
    }

.nikel-campaign-label {
    background: #e30613 !important;
    color: #ffffff !important;
    font-weight: 800;
}
/* ============================================================
   WHATSAPP
============================================================ */

.shop-whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    font-size: 27px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .20);
    z-index: 1050;
    transition: transform .2s ease;
}

    .shop-whatsapp-button:hover {
        color: #ffffff;
        transform: scale(1.07);
    }

@media (max-width: 767.98px) {

    .shop-whatsapp-button {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
        font-size: 25px;
    }
}

/* ============================================================
   DİNAMİK İÇERİK SAYFALARI
============================================================ */

.shop-content-page {
    padding: 30px 0 60px;
    background: #f7f7f8;
}

.shop-page-breadcrumb {
    margin-bottom: 20px;
}

    .shop-page-breadcrumb .breadcrumb {
        margin-bottom: 0;
        font-size: 14px;
    }

    .shop-page-breadcrumb a {
        color: var(--theme-primary);
        text-decoration: none;
    }

.shop-page-card {
    background: #ffffff;
    border: 1px solid var(--theme-border);
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

.shop-page-header {
    padding-bottom: 22px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--theme-border);
}

    .shop-page-header h1 {
        margin: 0;
        font-size: 32px;
        font-weight: 700;
        color: var(--theme-text);
    }

    .shop-page-header p {
        margin: 12px 0 0;
        font-size: 16px;
        color: var(--theme-muted);
    }

.shop-page-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--theme-text);
}

    .shop-page-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .shop-page-content h2,
    .shop-page-content h3,
    .shop-page-content h4 {
        margin-top: 28px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .shop-page-content p {
        margin-bottom: 18px;
    }

    .shop-page-content table {
        width: 100%;
        margin-bottom: 20px;
    }

    .shop-page-content iframe {
        max-width: 100%;
    }

@media (max-width: 767.98px) {

    .shop-content-page {
        padding: 20px 0 40px;
    }

    .shop-page-card {
        padding: 22px 18px;
        border-radius: 10px;
    }

    .shop-page-header h1 {
        font-size: 26px;
    }

    .shop-page-content {
        font-size: 15px;
    }
}
/* ============================================================
   ANA SAYFA SLIDER
============================================================ */

.shop-hero-section {
    padding: 24px 0;
}

.shop-home-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #f3f4f6;
}

    .shop-home-slider .carousel-item {
        position: relative;
    }

.shop-slider-link {
    display: block;
}

.shop-slider-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.shop-slider-content {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    width: min(470px, 70%);
    padding: 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .10);
}

.shop-slider-subtitle {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-primary);
}

.shop-slider-content h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--theme-text);
}

.shop-slider-content p {
    margin-bottom: 18px;
    color: var(--theme-muted);
    line-height: 1.6;
}

.shop-slider-button {
    background: var(--theme-primary);
    color: #fff;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
}

    .shop-slider-button:hover {
        background: var(--theme-secondary);
        color: #fff;
    }


/* ============================================================
   PROMO BANNERLAR
============================================================ */

.shop-home-promos {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.shop-home-promo {
    position: relative;
    display: block;
    min-height: 200px;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    background: #f3f4f6;
}

    .shop-home-promo picture,
    .shop-home-promo img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .shop-home-promo img {
        object-fit: cover;
        transition: transform .3s ease;
    }

    .shop-home-promo:hover img {
        transform: scale(1.03);
    }

.shop-home-promo-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .92);
    color: var(--theme-text);
}

    .shop-home-promo-content span {
        display: block;
        margin-bottom: 3px;
        font-size: 12px;
        color: var(--theme-primary);
    }

    .shop-home-promo-content strong {
        display: block;
        font-size: 18px;
        line-height: 1.25;
    }


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991.98px) {

    .shop-slider-image {
        height: 360px;
    }

    .shop-home-promos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .shop-home-promo {
        min-height: 190px;
    }
}


/* ============================================================
   MOBİL
============================================================ */

@media (max-width: 767.98px) {

    .shop-hero-section {
        padding: 15px 0;
    }

    .shop-home-slider {
        border-radius: 10px;
    }

    .shop-slider-image {
        height: 260px;
    }

    .shop-slider-content {
        left: 15px;
        right: 15px;
        bottom: 15px;
        top: auto;
        transform: none;
        width: auto;
        padding: 16px;
    }

        .shop-slider-content h2 {
            font-size: 22px;
        }

        .shop-slider-content p {
            display: none;
        }

    .shop-home-promos {
        grid-template-columns: 1fr;
    }

    .shop-home-promo {
        min-height: 170px;
        border-radius: 10px;
    }

    .shop-home-promo-content {
        left: 14px;
        bottom: 14px;
    }
}
/* ============================================================
   HERO - KATEGORİ + SLIDER
============================================================ */

.shop-hero-main {
    min-width: 0;
    width: 100%;
}

.shop-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
    gap: 16px;
    width: 100%;
}

.shop-home-slider {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

    .shop-home-slider .carousel-inner,
    .shop-home-slider .carousel-item {
        height: 100%;
    }

.shop-slider-image {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.shop-home-promos {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 360px;
}

.shop-home-promo {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #eee;
}

    .shop-home-promo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.shop-slider-empty {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1px dashed #ddd;
    color: #777;
}

    .shop-slider-empty i {
        font-size: 40px;
        color: var(--theme-primary);
    }

@media (max-width: 991.98px) {

    .shop-hero-layout {
        grid-template-columns: 1fr;
    }

    .shop-home-promos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: 180px;
    }
}

@media (max-width: 767.98px) {

    .shop-slider-image {
        height: 260px;
    }

    .shop-home-slider,
    .shop-slider-empty {
        min-height: 260px;
    }

    .shop-home-promos {
        grid-template-columns: 1fr;
        height: auto;
    }

    .shop-home-promo {
        min-height: 160px;
    }
}
/* ============================================================
   HOME V2 - sadece ana sayfa üst alanı
   Eski site.css ile çakışmaması için tüm sınıflar özeldir.
============================================================ */

.homev2-section {
    padding: 16px 0 20px;
    background: #f5f5f5;
}

.homev2-grid {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

/* SOL KATEGORİ */
.homev2-categories {
    background: #fff;
    border: 1px solid #ddd;
    min-height: 100%;
}

.homev2-category-title {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
    font-weight: 700;
    color: #222;
}

.homev2-category-list {
    background: #fff;
}

.homev2-category-group {
    position: relative;
    border-bottom: 1px solid #e9e9e9;
}

.homev2-category-item {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    text-align: left;
}

    .homev2-category-item:hover {
        background: #fafafa;
        color: var(--theme-primary);
    }

    .homev2-category-item i {
        font-size: 11px;
        color: #999;
    }

.homev2-subcategories {
    display: none;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.homev2-category-group.open .homev2-subcategories {
    display: block;
}

.homev2-category-group.open > .homev2-category-toggle > i {
    transform: rotate(90deg);
}

.homev2-subcategories > a {
    min-height: 38px;
    padding: 0 12px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px solid #eee;
}

    .homev2-subcategories > a:hover {
        color: var(--theme-primary);
        background: #fff;
    }

.homev2-all-link {
    font-weight: 700;
}

.homev2-empty-category {
    padding: 15px;
    color: #777;
}

/* SAĞ KOLON */
.homev2-main {
    min-width: 0;
}

/* SLIDER */
.homev2-slider {
    position: relative;
    width: 100%;
    height: 425px;
    overflow: hidden;
    background: #111;
}

    .homev2-slider .carousel-inner,
    .homev2-slider .carousel-item,
    .homev2-slider-link,
    .homev2-slider picture {
        width: 100%;
        height: 100%;
    }

    .homev2-slider-link,
    .homev2-slider picture {
        display: block;
    }

.homev2-slider-image {
    display: block;
    width: 100%;
    height: 425px;
    object-fit: cover;
    object-position: center;
}

.homev2-slider-overlay {
    position: absolute;
    left: 62px;
    top: 50%;
    transform: translateY(-50%);
    width: min(470px, 48%);
    z-index: 3;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
}

.homev2-slider-subtitle {
    margin-bottom: 12px;
    color: #ff3b3b;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.homev2-slider-overlay h1 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
}

.homev2-slider-overlay p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.6;
}

.homev2-slider-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    background: var(--theme-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
}

    .homev2-slider-button:hover {
        background: var(--theme-secondary);
        color: #fff;
    }

.homev2-slider .carousel-control-prev,
.homev2-slider .carousel-control-next {
    width: 54px;
}

.homev2-slider .carousel-control-prev-icon,
.homev2-slider .carousel-control-next-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.45);
    background-size: 18px;
}

.homev2-slider .carousel-indicators {
    margin-bottom: 15px;
}

    .homev2-slider .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 4px;
        border: 0;
        border-radius: 50%;
    }

.homev2-slider-empty {
    height: 425px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #eee;
    color: #777;
}

/* ALTTAN 3 KUTU - tam slider genişliği */
.homev2-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.homev2-feature-card {
    min-width: 0;
    min-height: 150px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ddd;
    color: #111;
    text-decoration: none;
}

    .homev2-feature-card:hover {
        border-color: var(--theme-primary);
        color: #111;
    }

.homev2-feature-icon {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    color: var(--theme-primary);
    font-size: 34px;
}

.homev2-feature-card h3 {
    margin: 0 0 7px;
    font-size: 19px;
    font-weight: 800;
}

.homev2-feature-card p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.45;
}

.homev2-feature-arrow {
    margin-left: auto;
    color: #777;
}

/* TABLET */
@media (max-width: 1199.98px) {
    .homev2-grid {
        grid-template-columns: 220px minmax(0,1fr);
        gap: 14px;
    }

    .homev2-slider,
    .homev2-slider-image,
    .homev2-slider-empty {
        height: 390px;
    }

    .homev2-slider-overlay {
        left: 45px;
        width: 52%;
    }

        .homev2-slider-overlay h1 {
            font-size: 34px;
        }

    .homev2-feature-card {
        padding: 16px;
        gap: 12px;
    }

    .homev2-feature-icon {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        font-size: 28px;
    }
}

/* MOBİL/TABLET */
@media (max-width: 991.98px) {
    .homev2-grid {
        grid-template-columns: 1fr;
    }

    .homev2-categories {
        min-height: auto;
    }

    .homev2-slider,
    .homev2-slider-image,
    .homev2-slider-empty {
        height: 360px;
    }

    .homev2-feature-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 767.98px) {
    .homev2-section {
        padding: 10px 0 14px;
    }

    .homev2-slider,
    .homev2-slider-image,
    .homev2-slider-empty {
        height: 280px;
    }

    .homev2-slider-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
        top: auto;
        width: auto;
        transform: none;
    }

        .homev2-slider-overlay h1 {
            font-size: 24px;
        }

        .homev2-slider-overlay p {
            display: none;
        }

    .homev2-feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .homev2-feature-card {
        min-height: 96px;
    }
}
.homev2-subcategories-open {
    display: block !important;
}

    .homev2-subcategories-open > a {
        min-height: 36px;
        padding: 0 12px 0 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fafafa;
        color: #666;
        text-decoration: none;
        font-size: 12px;
        border-bottom: 1px solid #ededed;
    }

        .homev2-subcategories-open > a:hover {
            background: #fff;
            color: var(--theme-primary);
        }

.homev2-main-category {
    font-weight: 600;
    background: #fff;
}
.homev2-subcategories-open {
    display: block !important;
}

    .homev2-subcategories-open > a {
        min-height: 36px;
        padding: 0 12px 0 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fafafa;
        color: #666;
        text-decoration: none;
        font-size: 12px;
        border-bottom: 1px solid #ededed;
    }

        .homev2-subcategories-open > a:hover {
            background: #fff;
            color: var(--theme-primary);
        }

.homev2-main-category {
    font-weight: 600;
    background: #fff;
}
/* ============================================================
   KATEGORİLER - İLK AÇILIŞTA KAPALI
============================================================ */

.homev2-category-group .homev2-subcategories,
.homev2-category-group .homev2-subcategories-open {
    display: none !important;
}

.homev2-category-group.open .homev2-subcategories,
.homev2-category-group.open .homev2-subcategories-open {
    display: block !important;
}

.homev2-category-toggle i {
    transition: transform .2s ease;
}

.homev2-category-group.open > .homev2-category-toggle i {
    transform: rotate(90deg);
}
/* ============================================================
   PRODUCT DETAIL V2
   ============================================================ */

/* ============================================================
   PRODUCT DETAIL V2
   ============================================================ */

.pdv2-page,
.pdv2-page * {
    box-sizing: border-box;
}

.pdv2-page {
    padding: 18px 0 55px;
    background: #fff;
    color: #151515;
}

.pdv2-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: #7a8392;
    font-size: 13px;
}

    .pdv2-breadcrumb a {
        color: #64748b;
        text-decoration: none;
    }

        .pdv2-breadcrumb a:hover {
            color: var(--theme-primary, #e30613);
        }

    .pdv2-breadcrumb > i {
        font-size: 10px;
        color: #b0b6bf;
    }

.pdv2-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1.04fr);
    gap: 34px;
    align-items: start;
}

.pdv2-gallery {
    min-width: 0;
}

.pdv2-main-image-box {
    position: relative;
    height: 570px;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.pdv2-image-button {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.pdv2-main-image {
    width: 100%;
    height: 100%;
    display: block;
    padding: 24px;
    object-fit: contain;
}

.pdv2-zoom-button {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e5e9;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: #111;
    font-size: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
}

.pdv2-image-button:hover .pdv2-zoom-button {
    transform: scale(1.05);
}

.pdv2-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #9ca3af;
}

    .pdv2-no-image i {
        font-size: 48px;
    }

.pdv2-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 11px;
    margin-top: 14px;
}

.pdv2-thumbnail {
    height: 96px;
    padding: 5px;
    overflow: hidden;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: .18s ease;
}

    .pdv2-thumbnail:hover,
    .pdv2-thumbnail.active {
        border-color: var(--theme-primary, #e30613);
    }

    .pdv2-thumbnail.active {
        box-shadow: 0 0 0 1px var(--theme-primary, #e30613);
    }

    .pdv2-thumbnail img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }

.pdv2-info {
    min-width: 0;
    padding: 2px 0 0;
}

.pdv2-brand {
    display: inline-block;
    margin-bottom: 11px;
    color: #e30613;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.pdv2-title {
    margin: 0 0 12px;
    color: #111827;
    font-size: clamp(28px, 2.3vw, 38px);
    font-weight: 750;
    line-height: 1.16;
}

.pdv2-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding-bottom: 18px;
    color: #7a8392;
    font-size: 13px;
    border-bottom: 1px solid #edf0f2;
}

    .pdv2-meta span:not(:last-child)::after {
        content: "";
        display: inline-block;
        width: 1px;
        height: 13px;
        margin-left: 14px;
        vertical-align: -2px;
        background: #d9dde2;
    }

    .pdv2-meta strong {
        color: #586174;
        font-weight: 600;
    }

.pdv2-price-row {
    min-height: 76px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 6px 0 4px;
}

.pdv2-current-price {
    color: #e30613;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
}

.pdv2-old-price {
    color: #7a8392;
    font-size: 18px;
}

.pdv2-discount {
    padding: 8px 11px;
    border-radius: 7px;
    color: var(--theme-primary, #e30613);
    background: color-mix(in srgb, var(--theme-primary, #e30613) 9%, white);
    font-size: 13px;
    font-weight: 700;
}

.pdv2-stock-block {
    margin: 5px 0 18px;
}

.pdv2-stock-in,
.pdv2-stock-out {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.pdv2-stock-in {
    color: #16a34a;
}

.pdv2-stock-out {
    color: #dc2626;
}

    .pdv2-stock-in i,
    .pdv2-stock-out i {
        font-size: 19px;
    }

.pdv2-shipping-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
    color: #64748b;
    font-size: 13px;
}

.pdv2-short-description {
    margin: 20px 0 24px;
    color: #596579;
    font-size: 15px;
    line-height: 1.75;
}

.pdv2-cart-form {
    margin-top: 20px;
}

.pdv2-purchase-row {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 54px;
}

.pdv2-quantity {
    display: grid;
    grid-template-columns: 50px 58px 50px;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid #d8dde4;
    border-right: 0;
    border-radius: 9px 0 0 9px;
    background: #fff;
}

    .pdv2-quantity button,
    .pdv2-quantity input {
        height: 100%;
        border: 0;
        outline: 0;
        background: #fff;
        color: #111827;
        text-align: center;
        font-size: 20px;
    }

    .pdv2-quantity button {
        cursor: pointer;
        transition: .15s ease;
    }

        .pdv2-quantity button:hover {
            background: #f7f8fa;
        }

    .pdv2-quantity input {
        width: 100%;
        border-left: 1px solid #edf0f2;
        border-right: 1px solid #edf0f2;
        font-size: 18px;
        font-weight: 600;
        -moz-appearance: textfield;
    }

        .pdv2-quantity input::-webkit-outer-spin-button,
        .pdv2-quantity input::-webkit-inner-spin-button {
            margin: 0;
            -webkit-appearance: none;
        }

.pdv2-add-cart {
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 0 9px 9px 0;
    background: var(--theme-primary, #e30613);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: .18s ease;
}

    .pdv2-add-cart:hover {
        filter: brightness(.93);
    }

    .pdv2-add-cart i {
        font-size: 24px;
    }

.pdv2-add-cart-disabled {
    width: 100%;
    border-radius: 9px;
    opacity: .55;
    cursor: not-allowed;
}

.pdv2-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding: 22px 0;
    border-top: 1px solid #e9edf1;
    border-bottom: 1px solid #e9edf1;
}

.pdv2-benefit {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

    .pdv2-benefit > i {
        flex: 0 0 auto;
        color: #111827;
        font-size: 28px;
    }

    .pdv2-benefit span {
        min-width: 0;
        display: flex;
        flex-direction: column;
        color: #7a8392;
        font-size: 12px;
        line-height: 1.35;
    }

    .pdv2-benefit strong {
        margin-bottom: 2px;
        color: #111827;
        font-size: 13px;
    }

.pdv2-product-footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-top: 18px;
    color: #6b7280;
    font-size: 13px;
}

    .pdv2-product-footer-meta span:not(:last-child)::after {
        content: "";
        display: inline-block;
        width: 1px;
        height: 12px;
        margin-left: 20px;
        vertical-align: -1px;
        background: #d7dce2;
    }

    .pdv2-product-footer-meta strong {
        color: #475569;
        font-weight: 600;
    }

.pdv2-tabs {
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    background: #fff;
}

    .pdv2-tabs .nav-tabs {
        display: flex;
        border: 0;
        border-bottom: 1px solid #e1e5e9;
    }

    .pdv2-tabs .nav-item {
        flex: 1;
    }

    .pdv2-tabs .nav-link {
        width: 100%;
        padding: 18px 16px;
        border: 0;
        border-bottom: 3px solid transparent;
        border-radius: 0;
        color: #566176;
        background: transparent;
        font-weight: 700;
    }

        .pdv2-tabs .nav-link:hover {
            color: var(--theme-primary, #e30613);
        }

        .pdv2-tabs .nav-link.active {
            color: var(--theme-primary, #e30613);
            border-bottom-color: var(--theme-primary, #e30613);
            background: #fff;
        }

    .pdv2-tabs .tab-content {
        padding: 26px 28px 30px;
    }

.pdv2-description {
    color: #374151;
    font-size: 15px;
    line-height: 1.8;
}

    .pdv2-description h1,
    .pdv2-description h2,
    .pdv2-description h3,
    .pdv2-description h4 {
        color: #111827;
    }

    .pdv2-description img {
        max-width: 100%;
        height: auto;
    }

.pdv2-compatible-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

    .pdv2-compatible-list > div {
        padding: 12px 14px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        color: #374151;
        font-size: 14px;
    }

    .pdv2-compatible-list i {
        margin-right: 6px;
        color: #16a34a;
    }

/* LIGHTBOX */

body.pdv2-lightbox-open {
    overflow: hidden;
}

.pdv2-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 35px 85px;
    background: rgba(0, 0, 0, .90);
}

    .pdv2-lightbox.open {
        display: flex;
    }

.pdv2-lightbox-content {
    width: min(1100px, 92vw);
    height: min(850px, 86vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pdv2-lightbox-content img {
        max-width: 100%;
        max-height: 100%;
        display: block;
        object-fit: contain;
        background: #fff;
        border-radius: 5px;
    }

.pdv2-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    font-size: 22px;
    cursor: pointer;
}

.pdv2-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .15);
    font-size: 25px;
    cursor: pointer;
}

.pdv2-lightbox-prev {
    left: 24px;
}

.pdv2-lightbox-next {
    right: 24px;
}

/* RESPONSIVE */

@media (max-width: 1199px) {

    .pdv2-product {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .95fr);
        gap: 26px;
    }

    .pdv2-main-image-box {
        height: 500px;
    }

    .pdv2-quantity {
        grid-template-columns: 52px 66px 52px;
    }

    .pdv2-add-cart {
        font-size: 18px;
    }
}

@media (max-width: 991px) {

    .pdv2-product {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pdv2-main-image-box {
        height: 560px;
    }

    .pdv2-info {
        padding-top: 0;
    }
}

@media (max-width: 767px) {

    .pdv2-page {
        padding-top: 10px;
    }

    .pdv2-breadcrumb {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .pdv2-main-image-box {
        height: 390px;
    }

    .pdv2-main-image {
        padding: 14px;
    }

    .pdv2-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .pdv2-thumbnail {
        height: 78px;
    }

    .pdv2-title {
        font-size: 26px;
    }

    .pdv2-current-price {
        font-size: 32px;
    }

    .pdv2-purchase-row {
        min-height: 60px;
    }

    .pdv2-quantity {
        grid-template-columns: 48px 56px 48px;
    }

    .pdv2-add-cart {
        min-height: 60px;
        padding: 0 14px;
        font-size: 17px;
    }

    .pdv2-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pdv2-tabs .nav-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .pdv2-tabs .nav-item {
        flex: 0 0 auto;
    }

    .pdv2-tabs .nav-link {
        min-width: 145px;
    }

    .pdv2-tabs .tab-content {
        padding: 22px 18px;
    }

    .pdv2-compatible-list {
        grid-template-columns: 1fr;
    }

    .pdv2-lightbox {
        padding: 60px 15px 20px;
    }

    .pdv2-lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .pdv2-lightbox-prev {
        left: 8px;
    }

    .pdv2-lightbox-next {
        right: 8px;
    }
}

@media (max-width: 480px) {

    .pdv2-purchase-row {
        display: grid;
        grid-template-columns: 135px minmax(0, 1fr);
    }

    .pdv2-quantity {
        grid-template-columns: 42px 51px 42px;
    }

    .pdv2-add-cart {
        font-size: 15px;
        gap: 7px;
    }

        .pdv2-add-cart i {
            font-size: 20px;
        }
}


/* ============================================================
   NIKEL KIRMIZI / KOMPAKT AYARLAR
   ============================================================ */

.pdv2-brand,
.pdv2-current-price,
.pdv2-breadcrumb a:hover,
.pdv2-tabs .nav-link:hover,
.pdv2-tabs .nav-link.active {
    color: #e30613;
}

.pdv2-discount {
    color: #e30613;
    background: #fff1f2;
}

.pdv2-thumbnail:hover,
.pdv2-thumbnail.active {
    border-color: #e30613;
}

.pdv2-thumbnail.active {
    box-shadow: 0 0 0 1px #e30613;
}

.pdv2-add-cart {
    background: #e30613;
    min-height: 54px;
    font-size: 17px;
}

    .pdv2-add-cart:hover {
        background: #c9000b;
        filter: none;
    }

.pdv2-current-price {
    font-size: 32px;
    line-height: 1.1;
}

.pdv2-price-row {
    min-height: 58px;
    margin: 4px 0 2px;
}

.pdv2-purchase-row {
    min-height: 54px;
}

.pdv2-quantity {
    grid-template-columns: 50px 58px 50px;
}

    .pdv2-quantity button,
    .pdv2-quantity input {
        font-size: 17px;
    }

.pdv2-benefits {
    margin-top: 24px;
    padding: 18px 0;
}

@media (max-width: 767px) {
    .pdv2-current-price {
        font-size: 28px;
    }

    .pdv2-purchase-row {
        min-height: 52px;
    }

    .pdv2-add-cart {
        min-height: 52px;
        font-size: 16px;
    }
}
.checkout-customer-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.checkout-customer-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-primary, #2563eb);
    color: #fff;
    font-size: 24px;
}

.checkout-customer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

    .checkout-customer-info strong {
        font-size: 17px;
        color: #222;
    }

    .checkout-customer-info span {
        font-size: 14px;
        color: #666;
    }

        .checkout-customer-info span i {
            width: 20px;
            margin-right: 4px;
        }

.checkout-customer-status {
    font-size: 13px;
    font-weight: 600;
    color: #15803d;
    white-space: nowrap;
}

    .checkout-customer-status i {
        margin-right: 4px;
    }

@media (max-width: 767px) {
    .checkout-customer-box {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .checkout-customer-status {
        width: 100%;
        padding-left: 70px;
    }
}
/* ============================================================
   KAYITLI ADRESLER
   ============================================================ */

.checkout-address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

    .checkout-address-header h3 {
        margin: 0;
    }

.checkout-new-address {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--theme-primary, #2563eb);
}

.checkout-saved-addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkout-address-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.checkout-address-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-address-card-inner {
    position: relative;
    height: 100%;
    min-height: 185px;
    padding: 18px;
    border: 2px solid #e8e8e8;
    border-radius: 11px;
    background: #fff;
    transition: .2s ease;
}

.checkout-address-card:hover
.checkout-address-card-inner {
    border-color: #bbb;
}

.checkout-address-radio:checked + .checkout-address-card-inner {
    border-color: var(--theme-primary, #2563eb);
    background: #fafcff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .07);
}

.checkout-address-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 11px;
}

.checkout-address-title {
    display: flex;
    align-items: center;
    gap: 7px;
}

    .checkout-address-title i {
        color: var(--theme-primary, #2563eb);
    }

.checkout-default-badge {
    background: #eaf8ee;
    color: #217638;
    border-radius: 30px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
}

.checkout-address-name {
    color: #222;
    font-weight: 700;
    margin-bottom: 5px;
}

.checkout-address-phone {
    color: #555;
    font-size: 13px;
    margin-bottom: 8px;
}

.checkout-address-text {
    display: flex;
    flex-direction: column;
    color: #777;
    font-size: 13px;
    line-height: 1.55;
}

.checkout-address-check {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary, #2563eb);
    color: #fff;
    font-size: 14px;
}

.checkout-address-radio:checked + .checkout-address-card-inner
.checkout-address-check {
    display: flex;
}

.checkout-address-info {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: #777;
    font-size: 12px;
}

.checkout-no-address {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px;
    border-radius: 9px;
    background: #f8f8f8;
    color: #555;
}

    .checkout-no-address > i {
        font-size: 25px;
    }

    .checkout-no-address div {
        display: flex;
        flex-direction: column;
    }

    .checkout-no-address span {
        color: #888;
        font-size: 13px;
        margin-top: 2px;
    }


/* MOBİL */

@media (max-width: 767px) {

    .checkout-saved-addresses {
        grid-template-columns: 1fr;
    }

    .checkout-address-header {
        align-items: flex-start;
        flex-direction: column;
    }
}
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}
/* ============================================================
   ADMIN ORDERS
============================================================ */

.order-filter-form {
    display: grid;
    grid-template-columns: 1fr 220px auto auto;
    gap: 10px;
    align-items: center;
}

.order-filter-search {
    position: relative;
}

    .order-filter-search i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
    }

    .order-filter-search input {
        width: 100%;
        height: 42px;
        padding: 0 14px 0 40px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        outline: none;
    }

        .order-filter-search input:focus {
            border-color: #111827;
        }

.order-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.order-badge-new {
    background: #fee2e2;
    color: #b91c1c;
}

.order-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.order-badge-info {
    background: #dbeafe;
    color: #1d4ed8;
}

.order-badge-success {
    background: #dcfce7;
    color: #166534;
}

.order-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.admin-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

    .admin-card-title h3 {
        margin: 0;
        font-size: 17px;
        font-weight: 800;
    }

    .admin-card-title span {
        color: #6b7280;
        font-size: 12px;
    }

.admin-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
}

    .admin-back-link:hover {
        color: #111827;
    }

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

    .order-info-grid > div {
        padding: 14px;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .order-info-grid span {
        display: block;
        color: #6b7280;
        font-size: 11px;
        margin-bottom: 4px;
    }

    .order-info-grid strong {
        display: block;
        font-size: 13px;
    }

.order-address {
    line-height: 1.7;
}

    .order-address p {
        margin: 8px 0;
        color: #4b5563;
    }

.order-note {
    padding: 14px;
    background: #fff7ed;
    border-radius: 8px;
    color: #7c2d12;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    color: #6b7280;
    font-size: 13px;
}

    .order-summary-row strong {
        color: #374151;
    }

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

    .order-summary-total strong {
        color: #d71920;
        font-size: 22px;
    }

.admin-empty-state {
    text-align: center;
    padding: 50px 20px;
}

    .admin-empty-state i {
        display: block;
        margin-bottom: 12px;
        font-size: 42px;
        color: #9ca3af;
    }

    .admin-empty-state h3 {
        font-size: 18px;
        font-weight: 800;
    }

    .admin-empty-state p {
        color: #6b7280;
    }

@media (max-width: 991px) {

    .order-filter-form {
        grid-template-columns: 1fr;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }
}