.campaningAreaBox {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.campaningAreaBoxImage {
    border-radius: 50%;
    overflow: hidden;
    transition: .3s ease-in-out;
}

.campaningAreaBoxImage {
    border: 3px solid transparent;
    background: linear-gradient(#131219, #131219) padding-box,
    linear-gradient(0deg, #9227da, #de13d2) border-box;
}

.campaningAreaBoxTitle {
    text-align: center;
}

.campaningAreaBoxTitle a {
    display: -webkit-box;
    width: 75%;
    margin-top: 5px;
    font-size: 14px;
    color: #000;
    text-decoration: none;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
}



.campaningAreaArrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.campaningAreaArrowsPrev {
    position: absolute;
    left: -30px;
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 18px;
}

.campaningAreaArrowsNext {
    position: absolute;
    right: -30px;
    display: flex;
    align-items: center;
    font-size: 17px;
    line-height: 15px;
}

.category-grid-box-1 .image img {
    height: 350px;
    object-fit: contain;
}

.infoBoxs .col-md-4 {
    border-right: 1px solid #e1e1e1;
}

.infoBoxs .col-md-4:last-child {
    border-right: none;
}

.infoBoxTitle {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 500;
    color: black;
}

/* CARD */
.ucard {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

.ucard:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
}

/* IMAGE AREA */
.ucard-img {
    position: relative;
    padding: 20px;
    background: radial-gradient(circle at top, #f7f7f7, #efefef);
}

.ucard-img img {
    width: 100%;
    height: 330px;
    object-fit: contain;
    transition: transform .5s ease;
}

.ucard:hover .ucard-img img {
    transform: scale(1.06);
}

/* FAVORITE */
.ucard-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .95);
    color: #ff6000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    cursor: pointer;
    transition: all .3s ease;
}

.ucard-fav:hover {
    background: #ff6000;
    color: #fff;
    transform: scale(1.1);
}

/* BODY */
.ucard-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* TITLE */
.ucard-title a {
    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f;
    line-height: 1.45;
    text-decoration: none;
    display: block;
    min-height: 44px;
}

.ucard-title a:hover {
    color: #ff6000;
}

/* DETAIL ROW */
.ucard-detail {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* PRICE */
.ucard-price-badge {
    font-size: 18px;
    font-weight: 700;
    color: #ff6000;
    white-space: nowrap;
}

/* CART BUTTON */
.ucard-cart {
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff6000, #dc5b0d);
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 10px 25px rgba(163, 16, 52, .35);
    transition: all .3s ease;
    cursor: pointer;
}

.ucard-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 96, 0, 0.46);
}

/* MOBILE */
@media (max-width: 768px) {
    .ucard-img img {
        height: 270px;
    }

    .ucard-title a {
        font-size: 14px;
    }

    .ucard-price-badge {
        font-size: 15px;
    }

    .ucard-cart {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 12px;
    }
}

.btn-readmore {
    background: linear-gradient(135deg, #ff6000, #ff8a33);
    color: #fff !important;
    padding: 14px 38px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(255, 96, 0, .35);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    border: none;
}

/* HOVER */
.btn-readmore:hover {
    background: linear-gradient(135deg, #ff5200, #ff7a1f);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(255, 96, 0, .5);
    color: #fff;
}

/* ACTIVE */
.btn-readmore:active {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(255, 96, 0, .35);
}

/* MOBILE */
@media (max-width: 768px) {
    .btn-readmore {
        padding: 12px 30px;
        font-size: 14px;
    }
}


header{
    overflow: hidden;
}

.headerBodyAreaCategory {
    margin-top: 10px;
    background: #f1f1f1;

}

.horizontal-scroll {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    animation: horizontalScroll 30s linear infinite;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

@keyframes horizontalScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.searchBox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
}

.searchBox.active {
    visibility: visible;
    opacity: 1;
    transition: .3s ease-in-out;
}

.searchBox form {
    display: flex;
    align-items: center;
}

.searchBox input {
    width: 100%;
    height: 50px;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid white;
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.searchBox button {
    height: 50px;
    width: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    outline: none;
    cursor: pointer;
    color: white;
    box-shadow: none;
    margin-left: 10px;
    border: none;
}

.searchBox button i {
    font-size: 25px;
    line-height: 20px;
    display: flex;
}

.searchBox input::placeholder {
    color: #bcbcbc;
}

.closeSearchBox {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
}

.closeSearchBox {
    color: red;
    font-size: 25px;
    line-height: 20px;
    display: flex;
}


.basketDetailRows {
    padding-right: 10px;
    height: calc(100vh - 260px);
    overflow-y: scroll;
}

.basketDetailRows::-webkit-scrollbar {
    width: 3px;
}

.basketDetailRows::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.basketDetailRows::-webkit-scrollbar-thumb {
    background: #c8c8c8;
}

.basketDetailRows::-webkit-scrollbar-thumb:hover {
    background: #a4a4a4;
}


/* SIDEBAR */
.basketSidebar {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.basketSidebar.active {
    display: block;
}

.basketOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

/* PANEL */
.basketDetail {
    position: absolute;
    right: 0;
    top: 0;
    width: 420px;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
}

/* HEADER */
.basketHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.basketDetailTitle {
    font-size: 18px;
    font-weight: 600;
}

.closeBasket {
    cursor: pointer;
    font-size: 20px;
}

/* LIST */
.basketDetailRows {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
}

/* ITEM */
.basketDetailRow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 14px;
    margin-bottom: 12px;
    transition: .2s;
}

.basketDetailRow:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* IMAGE */
.basketDetailRowIamge img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

/* INFO */
.basketDetailRowDetail {
    flex: 1;
}

.basketDetailRowTitle a {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
}

.basketDetailRowPrice {
    margin-top: 6px;
    font-weight: 600;
    color: #A31034;
}

/* DELETE */
.basketDetailRowDelete {
    color: #999;
    cursor: pointer;
    font-size: 16px;
}

.basketDetailRowDelete:hover {
    color: #d00;
}

/* FOOTER */
.basketFooter {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
}


.blogAreav2 {
    background: #f8f9fb;
}

.innerTitle {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.5px;
}

.blogCard {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all .35s ease;
    height: 100%;
}

.blogCard:hover {
    transform: translateY(-10px);
}

.blogImage {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blogImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blogCard:hover img {
    transform: scale(1.08);
}

.blogDate {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    backdrop-filter: blur(6px);
}

.blogContent {
    padding: 22px;
}

.blogContent h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blogContent p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.readMore {
    font-size: 14px;
    font-weight: 600;
    color: #0d6efd;
    cursor: pointer;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

/* Genel */
.banner-grid .item {
    border-radius: 12px;
    overflow: hidden;
}

.banner-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DESKTOP */
@media (min-width: 992px) {
    .banner-grid {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;

    }

    /* 1. resim */
    .item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 3; /* dikey full */
    }

    /* 2 */
    .item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    /* 3 */
    .item-3 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    /* 4 */
    .item-4 {
        grid-column: 3 / 4;
        grid-row: 1 / 3; /* dikey full */
    }
}

.modern-footer {
    background: #f9f9fb;
    color: #333;
    padding: 70px 0 30px;
    border-top: 1px solid #e5e5e5;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
}

/* BRAND */
.footer-brand img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #555;
    line-height: 1.7;
}

/* SOSYAL */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: #444;
    border: 1px solid #ddd;
    transition: .3s;
}

.footer-social a:hover {
    background: #A31034;
    color: #fff;
    border-color: #A31034;
    transform: translateY(-3px);
}

/* LINK BLOKLARI */
.footer-links h4 {
    font-size: 16px;
    color: #111;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #555;
    transition: .3s;
}

.footer-links a:hover {
    color: #A31034;
    padding-left: 6px;
}

/* ALT BAR */
.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.payments img {
    height: 32px;
    margin-right: 12px;
    opacity: .9;
}

/* MOBİL */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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



.primary-button {
    box-shadow: unset;
    font-size: 14px;
    font-weight: 600;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: white;
    height: 45px;
    padding: 0 15px;
    background-color: #800080 !important;
    border-color: #700470 !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-button:hover {
    background-color: #5d0a5d !important;
    border-color: #800080 !important;
}

.primaryButton {
    box-shadow: unset;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: white;
    height: 40px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primaryButtonBlock {
    box-shadow: unset;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: white;
    height: 45px;
    width: 100%;
}

.primaryButtonSuccess {
    background-color: #46bcaa !important;
    border-color: #46bcaa !important;
}

.primaryButtonSuccess:hover {
    background-color: #62c6b7 !important;
    border-color: #59c3b3 !important;
}

.primaryButtonDanger {
    background-color: #f35421 !important;
    border-color: #f35421 !important;
}

.primaryButtonDanger:hover {
    background-color: #f56e42 !important;
    border-color: #f46537 !important;
}

.primaryButtonInfo {
    background-color: #4d69fa !important;
    border-color: #4d69fa !important;
}

.primaryButtonInfo:hover {
    background-color: #6880fb !important;
    border-color: #5f78fb !important;
}

.border-radius-8 {
    border-radius: 8px;
}




.productPoists span i {
    font-size: 16px;
    line-height: 16px;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.productPoists2 span i {
    font-size: 14px;
    line-height: 14px;
}

.productPoists span.active i {
    color: #f8c600;
    transition: .3s ease-in-out;
}

.productPoists span.certainActive i {
    color: #f8c600;
    transition: .3s ease-in-out;
}

.productPoists span.certainActivex2 i {
    color: #f8c600;
    transition: .3s ease-in-out;
}

.productPoists2 span.certainActivex2 i {
    color: #f8c600;
    transition: .3s ease-in-out;
}
.pd-supply-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 1px solid #f0f0f0;
}

.pd-supply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pd-supply-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.badge-dealer {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pd-supply-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.pd-supply-price {
    font-size: 22px;
    font-weight: 700;
    color: #1e88e5;
    margin-bottom: 15px;
}

.btn-dealer {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #1e88e5;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .25s ease;
}


.btn-dealer:hover {
    background: #1565c0;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none !important;

}
