:root {
    --header-action-height: 56px;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    background: #eef1f4;
    font-family: "Poppins", sans-serif;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
    /* 🔑 footer’ı en alta iter */
}

.site-footer {
    background: #000;
    color: #fff;
}

.site-content-wrapper {
    background: #ffffff;
    margin: 24px auto;
    padding: 24px 0;

    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    max-width: 1320px;
}

.site-content-wrapper .container {
    max-width: 1320px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.page-header__breadcrumb {
    max-width: 1320px;
    margin: 0px auto;
}

.page-header__breadcrumb .breadcrumb {
    background: transparent;
    padding: 0px;
    margin-bottom: 0px;
    font-size: 15px;
}

.page-header__breadcrumb .breadcrumb-item {
    text-transform: capitalize;
}

.siparis-filter-form label,
.siparis-filter-form input,
.siparis-filter-form select {
    font-size: 15px;
}

.siparis-filter-form {
    padding: 15px 0px;
}

.siparis-filter-form .row {
    gap: 15px 0px;
}

.dataTables_empty {
    font-size: 15px;
}

.table-list-page div.dataTables_wrapper div.dataTables_length {
    padding-left: 0px;
}

.table-list-page div.dataTables_wrapper div.dataTables_paginate {
    padding-right: 0px;
}

.table-list-page div.dataTables_wrapper div.dataTables_length select {
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.block-header {
    margin-bottom: 16px;
}

.block-products-carousel.page-panel {
    padding: 20px 28px 24px;
}

.block-products-carousel .product-card {
    margin: 0 4px;
}

/* =====================================================
   HEADER – GLOBAL LAYOUT
===================================================== */

.layout-header {
    position: relative;
    z-index: 500;
    background: #ffffff;
}

/* =====================================================
   FLASH / MARQUEE
===================================================== */

.header-flash {
    background: #fde68a;
    color: #78350f;
    font-size: 13px;
    overflow: hidden;

    &__marquee {
        white-space: nowrap;
        padding: 6px 12px;
        animation: marquee 15s linear infinite;
    }
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* =====================================================
   HEADER LOGO
===================================================== */

.header-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    max-height: 48px;
    max-width: 240px;
    object-fit: contain;
}

.header-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .header-logo__image {
        max-height: 36px;
        max-width: 160px;
    }
}

/* =====================================================
   MOBILE HEADER
===================================================== */

.header--mobile .header-mobile__container {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;

    height: 56px;
    padding: 0 12px;
    gap: 8px;

    background: #fff;
}

.header--mobile .header__main {
    display: contents;
}

.header--mobile .header-mobile__menu-btn {
    width: 40px;
    height: 40px;

    border: none;
    border-radius: 10px;
    background: #f3f4f6;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.header--mobile .header-logo {
    display: flex;
    justify-content: center;
}

.header--mobile .header-logo__image {
    height: 32px;
    max-width: 160px;
    object-fit: contain;
}

.header--mobile .mobile-indicators {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header--mobile .indicator-btn {
    width: 38px;
    height: 38px;

    border-radius: 10px;
    background: #f3f4f6;

    display: flex;
    align-items: center;
    justify-content: center;
}

.header--mobile .indicator-btn__count {
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    position: absolute;
    background: #ddd;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
}

.header--mobile {
    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

@media (max-width: 991px) {
    .header--mobile .header__balance {
        display: none;
    }
}

/* =====================================================
   MOBILE SEARCH
===================================================== */

.mobile-search {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 1000;
    padding: 12px;
    display: none;
    flex-direction: column;
    height: 70px;
    border-bottom: 1px solid #ddd;
}

.mobile-search.mobile-header__search--open {
    display: flex;
}

.mobile-search .mobile-search__input-wrapper {
    position: relative;
}

.mobile-search .mobile-search__input {
    width: 100%;
    height: 44px;
    padding: 0 44px 0 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 16px;

}

.mobile-search .mobile-search__input:focus {
    outline: none;
    border-color: #2563eb;
}

.mobile-search .mobile-search__close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.mobile-search .mobile-search__suggestions {
    margin-top: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    height: 500px;
    z-index: 999;
    position: absolute;
    top: 58px;
    background: #fff;
    left: 0px;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

/* =====================================================
   MOBILE INDICATORS
===================================================== */

.mobile-indicators {
    display: flex;
    align-items: center;
    gap: 10px;
}

.indicator-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;

    &__count {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 18px;
        height: 18px;
        background: #dc2626;
        color: #ffffff;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* =====================================================
   DESKTOP TOPBAR
===================================================== */

.header-topbar-wrapper {
    background: #f3f4f6;
}

.header-topbar-wrapper .header-topbar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    font-size: 12px;
}

.header-topbar__firm {
    color: #374151;
    font-weight: 500;
}

.header-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-topbar__item {
    display: flex;
    align-items: center;
}

.topbar-balance {
    padding: 4px 10px;
    border-radius: 999px;
    color: #1e3a8a;
    font-size: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.topbar-balance strong {
    font-weight: 700;
}

/* Negatif durum */
.topbar-balance.is-danger {
    background: #fee2e2;
    color: #991b1b;
}


.dropdown-account {
    position: relative;
}

.dropdown-account__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.dropdown-account.is-open .dropdown-account__toggle svg {
    transform: rotate(180deg);
}

.dropdown-account__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    padding: 6px;
    display: none;
    z-index: 400;
}

.dropdown-account__item {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
    color: #111827;
    transition: background .15s ease;
}

.dropdown-account__item:hover {
    background: #f3f4f6;
}

.dropdown-account__item.is-danger {
    color: #dc2626;
}

.dropdown-account__item.is-danger:hover {
    background: rgba(220, 38, 38, .08);
}

.dropdown-account.is-open .dropdown-account__menu {
    display: block;
}

/* =====================================================
   HEADER MIDDLE – CONTAINER FINAL
===================================================== */

.header-middle {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* Container */
.header-middle__container {
    max-width: 1320px;
    /* Bootstrap xl ayarı */
    margin: 0 auto;
    padding: 12px 0px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

/* SOL */
.header-middle__left {
    display: flex;
    align-items: center;
}

/* ORTA */
.header-middle__center {
    display: flex;
    justify-content: center;
}

/* SAĞ */
.header-middle__right {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
}

/* Büyük ekranlarda ortayı sınırlayalım */
.header-middle__center .header-balance {
    max-width: 520px;
}

/* 1366 ve altı */
@media (max-width: 1400px) {
    .header-middle__container {
        padding: 10px 20px;
        gap: 16px;
    }
}

/* Tablet / küçük desktop */
@media (max-width: 992px) {
    .header-middle__container {
        grid-template-columns: auto auto;
        grid-template-areas:
            "left right"
            "center center";
    }

    .header-middle__left {
        grid-area: left;
    }

    .header-middle__right {
        grid-area: right;
        justify-content: flex-end;
    }

    .header-middle__center {
        grid-area: center;
        justify-content: center;
        margin-top: 8px;
    }
}


/* =====================================================
   HEADER CART (NORMAL)
===================================================== */

/* =====================================================
   HEADER CART – FINAL B2B
===================================================== */

.header-cart {
    min-height: var(--header-action-height);

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 16px;
    border-radius: 12px;

    background: #ffffff;
    border: 1px solid #d1d5db;

    text-decoration: none;
    color: #111827;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);

    transition: all .15s ease;
    height: 100%;
}

.header-cart:hover {
    border-color: #9ca3af;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

/* ICON */
.header-cart__icon {
    position: relative;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #f3f4f6;
    color: #111827;
}

/* BADGE */
.header-cart__badge {
    position: absolute;
    top: -4px;
    right: -4px;

    min-width: 22px;
    height: 22px;
    padding: 0 6px;

    background: #2563eb;
    color: #ffffff;

    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT */
.header-cart__content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-cart__title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

.header-cart__meta {
    font-size: 12px;
    color: #6b7280;
}


/* =====================================================
   HEADER IADE CART
===================================================== */

.header-iade-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(239, 68, 68, .08);
    color: #991b1b;
    transition: all .2s ease;

    &:hover {
        background: rgba(239, 68, 68, .14);
        transform: translateY(-1px);
    }

    &__icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #ef4444;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* =====================================================
   NAVBAR – MAIN (DESKTOP)
===================================================== */

.nav-main {
    background: #ffffff;
    background: #1c1c1c;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 100;
}

/* Container */
.nav-main__list {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0px;

    display: flex;
    align-items: center;
    gap: 28px;

    list-style: none;
}

/* =====================================================
   NAV ITEM
===================================================== */

.nav-main__item {
    position: relative;
}

/* Link */
.nav-main__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    padding: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;

    transition: color .15s ease;
}

/* Icon */
.nav-main__icon {
    font-size: 24px;
    color: #ffffff;
}

/* Hover */
.nav-main__link:hover {
    color: #d8d8d8;
}

/* Active (isteğe bağlı class) */
.nav-main__item.is-active>.nav-main__link {
    color: #d8d8d8;
    font-weight: 600;
}

/* =====================================================
   DROPDOWN (CHILD MENU)
===================================================== */

/* Dropdown container */
.nav-child {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;

    min-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

    padding: 8px;
    display: none;
    z-index: 400;
}

/* Hover ile aç */
.nav-main__item.has-submenu:hover>.nav-child {
    display: block;
}

/* Dropdown item */
.nav-child__item a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;

    font-size: 13px;
    color: #ffffff;
    text-decoration: none;

    transition: background .15s ease, color .15s ease;
}

.nav-child__item a:hover {
    background: #f3f4f6;
    color: #2563eb;
}

/* =====================================================
   RESPONSIVE TWEAKS (DESKTOP KÜÇÜK)
===================================================== */

@media (max-width: 1400px) {
    .nav-main__list {
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .nav-main__link {
        font-size: 13px;
        padding: 10px 2px;
    }
}

/* =====================================================
   HEADER – TEMSİLCİ (DESKTOP)
===================================================== */

.header-rep {
    min-height: var(--header-action-height);
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px 14px;
    border-radius: 10px;

    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);

    min-width: 240px;
}

.header-rep:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.header-rep__photo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.header-rep__content {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.header-rep__title {
    font-size: 11px;
    font-weight: 600;
    opacity: .85;
}

.header-rep__name {
    font-size: 13px;
    font-weight: 700;
}

.header-rep__contact {
    font-size: 12px;
    color: #1f2937;
    text-decoration: none;
}

.header-rep__contact:hover {
    text-decoration: underline;
}

/* =====================================================
   MOBILE – TEMSİLCİ
===================================================== */

.mobile-rep {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f3f4f6;
    border-radius: 10px;
}

.mobile-rep__photo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.mobile-rep__content {
    display: flex;
    flex-direction: column;
}

.mobile-rep__title {
    font-size: 13px;
    font-weight: 700;
}

.mobile-rep__name {
    font-size: 14px;
    font-weight: 600;
}

.mobile-rep__contact {
    font-size: 13px;
    color: #111827;
    text-decoration: none;
}

[dir=ltr] .menu__submenu {
    left: 0;
}

.menu {
    box-shadow: none;
    border-radius: 0px 0px 14px 0px;
    width: 100%;
}

.menu__submenu {
    position: absolute;
    top: 100%;
    /* menünün ALTINDAN başlasın */
    left: 0;
    transform: translateY(0px);
    min-width: 220px;

    background: #ffffff;
    border-radius: 0px 0px 14px 0px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);

    opacity: 0;
    visibility: hidden;

    transition: opacity .18s ease, transform .18s ease;

    z-index: 999;
}

.menu__list {
    padding: 0px;
}

.menu__item-link {
    padding: 15px 20px;
}

.menu__item:last-child .menu__item-link {
    border-radius: 0px 0px 14px 0px;
}

.nav-main__item:hover>.menu__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.site-footer .container {
    max-width: 1320px;
}

@media (max-width: 991px) {
    .site-content-wrapper {
        margin: 0px;
        box-shadow: none;
        border-radius: 0px;
        padding: 0px;
    }

    .block-products-carousel.page-panel {
        padding-right: 15px;
        padding-left: 15px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .block-products-carousel .product-card {
        margin: 0px;
    }

    .filter-label {
        width: 120px;
    }

    .new-filter-panel .bosluk {
        display: none;
    }
}




/*HOME*/
.home-block {
    width: 100% !important;
    margin: 0px !important;
    padding: 20px 28px 24px;

}

.ms-options-wrap {
    width: 100% !important;
}

.block-products-carousel[data-layout="b2b-horizontal"] .owl-item {
    width: 220px !important;
}

@media (max-width: 576px) {
    .block-products-carousel[data-layout="b2b-horizontal"] .owl-item {
        width: 160px !important;
    }
}

.block-products-carousel[data-layout="b2b-horizontal"] .owl-stage {
    display: flex;
    flex-wrap: nowrap !important;
}

.block-products-carousel[data-layout="b2b-horizontal"] .owl-item {
    flex-shrink: 0;
    flex: 0 0 auto !important;
}

.block-header__arrows-list {
    position: absolute;
    top: 50%;
    right: -33px;
    left: -33px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 999;
}

.block-header__arrow {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: cover;
    cursor: pointer;
    height: 66px;
    width: 66px;
}

.block-header__arrow.block-header__arrow--left {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='67' height='66' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23a)'%3E%3Crect x='15.5' y='8' width='36' height='36' rx='18' fill='%23fff'/%3E%3Cg clip-path='url(%23b)'%3E%3Cpath d='M36 20.5 30.5 26l5.5 5.5' stroke='%23212121' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='b'%3E%3Cpath fill='%23fff' transform='translate(25.5 18)' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3Cfilter id='a' x='.5' y='0' width='66' height='66' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='7'/%3E%3CfeGaussianBlur stdDeviation='7.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0'/%3E%3CfeBlend in2='BackgroundImageFix' result='effect1_dropShadow_24700_4238'/%3E%3CfeColorMatrix in='SourceAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3CfeBlend in2='effect1_dropShadow_24700_4238' result='effect2_dropShadow_24700_4238'/%3E%3CfeBlend in='SourceGraphic' in2='effect2_dropShadow_24700_4238' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    position: absolute;
    left: -33px;
    top: 45%;
    z-index: 2;
}

.block-header__arrow.block-header__arrow--right {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='67' height='66' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23a)'%3E%3Crect x='15.5' y='8' width='36' height='36' rx='18' fill='%23fff'/%3E%3Cg clip-path='url(%23b)'%3E%3Cpath d='m31 20.5 5.5 5.506L31 31.5' stroke='%23212121' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='b'%3E%3Cpath fill='%23fff' transform='translate(25.5 18)' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3Cfilter id='a' x='.5' y='0' width='66' height='66' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='7'/%3E%3CfeGaussianBlur stdDeviation='7.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0'/%3E%3CfeBlend in2='BackgroundImageFix' result='effect1_dropShadow_24700_4234'/%3E%3CfeColorMatrix in='SourceAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3CfeBlend in2='effect1_dropShadow_24700_4234' result='effect2_dropShadow_24700_4234'/%3E%3CfeBlend in='SourceGraphic' in2='effect2_dropShadow_24700_4234' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    position: absolute;
    right: -33px;
    top: 45%;
    z-index: 2;
}


.product-image-container-custom {
    height: 140px;
    /* daha kompakt */
    background: #fff !important;
    border-radius: 0px;
}

.product-body-custom {
    padding: 6px 4px;
    border-top: none !important;
}

.product-body-custom .price-custom {
    font-size: 12px;
    margin-bottom: 2px;
}

.block-products-carousel__column {
    padding: 0px !important;
}

.block-header {
    margin-bottom: 10px !important;
}

.product-card-custom {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px;
    height: 100%;
    transition: all .2s ease;
    font-family: 'poppins', sans-serif !important;
}

.block-products__list .product-card-custom {
    height: auto !important;
}

.product-card-custom:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.product-image-container-custom {
    height: 180px;
    background: #f7f7f7;
    border-radius: 6px;
}

.product-body-custom .price-custom {
    font-size: 13px;
    line-height: 1.4;
}

.product-body-custom strong {
    font-size: 14px;
}

.product-header-custom {
    background: #fff !important;
    color: #000 !important;
}

.block-products__list {
    margin: 0px !important;
}

.container-1320 .block {
    margin-top: 0px !important;
    margin-bottom: 30px !important;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    margin: 0;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-login{
    width: 100%;
    text-align: center;
    padding: 5px;
}

@media(max-width:992px) {
    .mobileHeaderMusteriOnizleme {
        display: none;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .yazi-component {
        overflow-x: auto;
    }

    .yazi-component table {
        width: 100%;
        table-layout: auto;
        /* 🔥 kritik */
        border-collapse: collapse;
    }

    .yazi-component th,
    .yazi-component td {
        white-space: nowrap;
        /* başlıklar satır kırmasın */
        text-align: left;
        vertical-align: top;
        padding: 8px;
    }

    .anasayfa-slider .slider-resim {
        height: 200px !important;
    }

    .home-block{
        padding: 0px;
    }

    .slick-prev, .slick-next{
        font-size: 0px !important;
    }
}

/* Popup'un tamamını kaplayan arkaplan */
.uiPopup {
    display: none;
    /* Varsayılan olarak gizli */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Yarı saydam siyah */
}

/* Popup içeriği */
.uiPopup-content {
    background-color: white;
    margin: 4% auto;
    /* Sayfanın ortasına yerleştirme */

    border: 1px solid #888;
    width: 90%;
    /* İçeriğin genişliği - mobil uyum için yüzde kullanıyoruz */
    max-width: 600px;
    /* İçeriğin maksimum genişliği */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

    position: relative;
    text-align: center;
}

/* Kapatma butonu (çarpı işareti) */
.uiPopupClose {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.uiPopupClose:hover,
.uiPopupClose:focus {
    color: #000;
    text-decoration: none;
}

/* Resmin stili */
.uiPopup-image {
    width: 100%;
    /* Mobil uyum için resim genişliği ayarlanıyor */
    height: auto;
}