
/*** Global ***/
html {
    overflow-x: clip;
}

body {
    overflow-x: clip;
    max-width: 100%;
}
/*** Global End ***/

/*** Theme Color Overrides ***/
:root {
    --bs-primary:   #1B3A6B;
    --bs-secondary: #E07B00;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white);
}

.btn.btn-secondary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border: 1px solid var(--bs-secondary);
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.nav-bar .categories-bars .categories-bars-item {
    padding: 5px 15px;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    display: flex;
    justify-content: space-between;
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item a,
.nav-bar .categories-bars .categories-bars-item span {
    color: var(--bs-dark);
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item:hover {
    background: var(--bs-primary);
}

.nav-bar .categories-bars .categories-bars-item:hover a,
.nav-bar .categories-bars .categories-bars-item:hover span {
    color: var(--bs-white);
}

.nav-bar .navbar.navbar-light {
    padding: 0 !important;
}

.nav-bar .navbar .navbar-nav .nav-link {
    padding: 18px 15px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .nav-bar .navbar .navbar-nav .nav-link {
        padding: 8px 0px;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 5px 15px;
}

#allCat {
    position: absolute;
    left: 0;
    right: 0;
    top: 51px;
    z-index: 999;
    background: var(--bs-light);
}

.nav-bar .navbar-toggler {
    border-radius: 5px !important;
    box-shadow: none !important;
}

/*** Navbar End ***/

/*** Mobile Navbar Start ***/
.site-navbar-wrap {
    background-color: #1B3A6B;
}

.mobile-nav-icon {
    width: 54px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
    cursor: pointer;
}

.mobile-nav-icon:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.mobile-nav-toggler {
    width: 58px;
    background: #E07B00;
    cursor: pointer;
    transition: background 0.2s;
}

.mobile-nav-toggler:hover {
    background: #cc6a00;
}

.mobile-nav-toggler .navbar-toggler-icon {
    width: 22px;
    height: 22px;
}

.mobile-search-wrap {
    background: rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-search-input {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

@media (max-width: 991.98px) {
    #mainNav {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    #mainNav .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    #mainNav .navbar-nav .nav-link {
        padding: 13px 24px !important;
        font-size: 13px;
        transition: background 0.15s, padding-left 0.2s, color 0.15s;
    }

    #mainNav .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
        padding-left: 34px !important;
        color: #E07B00 !important;
    }

    #mainNav .navbar-nav .nav-link.active {
        color: #E07B00 !important;
        background: rgba(224, 123, 0, 0.1);
    }
}
/*** Mobile Navbar End ***/

/*** Carousel Header Start ***/

/* Slayt geçişi sırasında taşmayı önle */
.header-carousel.owl-carousel,
.header-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.header-carousel.owl-carousel .owl-nav {
    position: absolute;
    bottom: 18px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.header-carousel.owl-carousel .owl-nav .owl-prev,
.header-carousel.owl-carousel .owl-nav .owl-next {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.header-carousel.owl-carousel .owl-nav .owl-prev:hover,
.header-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.carousel .carousel-header-banner {
    position: relative;
}

.carousel .carousel-banner-offer {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.carousel .carousel-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
/*** Carousel Header End ***/

/*** Carousel Slide Content ***/
.carousel-badge {
    background: #1B3A6B;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 30px;
}

.carousel-badge--orange {
    background: #E07B00;
}

.carousel-heading {
    font-size: 2rem;
    line-height: 1.25;
    color: #1B3A6B;
}

.carousel-content {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767.98px) {
    /* wow animasyon kaymasını önle */
    .wow {
        visibility: visible !important;
        animation-name: none !important;
    }

    .header-carousel.owl-carousel .owl-nav {
        bottom: 10px;
        right: 12px;
        gap: 8px;
    }

    .header-carousel.owl-carousel .owl-nav .owl-prev,
    .header-carousel.owl-carousel .owl-nav .owl-next {
        width: 36px;
        height: 36px;
    }
}
/*** Carousel Slide Content End ***/


/*** Page Header start ***/
.page-header {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/*** Page Header end ***/


/*** Products Start ***/
.product .product-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.product .product-item .product-item-inner {
    height: 100%;
}

.product .product-item .product-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.product .product-item:hover .product-item-add {
    background: var(--bs-white);
    margin-bottom: -124px;
    opacity: 1;
}

.product .product-item .product-item-inner .product-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.product .product-item .product-item-inner .product-item-inner-item .product-new,
.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product .product-item .product-item-inner .product-item-inner-item .product-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner img {
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner img {
    transform: scale(1.1);
}

.product .product-item .product-item-inner .product-item-inner-item .product-details {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.product .product-item .product-item-inner .product-item-inner-item .product-details a i {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner .product-item-inner-item .product-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item:hover .product-item-inner .product-details {
    opacity: 1;
}

.product .tab-class .nav .nav-item a.active {
    background: var(--bs-primary) !important;
}

.product .tab-class .nav .nav-item a.active span {
    color: var(--bs-white) !important;
}
/*** Product End ***/


/*** Latest Products Section Start ***/
.section-latest-products {
    background-color: #F4F6F9;
}

.section-badge {
    display: inline-block;
    background-color: var(--bs-secondary);
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 6px 20px;
    border-radius: 30px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 0;
}

.section-divider {
    width: 55px;
    height: 3px;
    background-color: var(--bs-secondary);
    border-radius: 2px;
}

.latest-product-card {
    padding: 8px;
}

.lp-card-inner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 148px;
    box-shadow: 0 2px 14px rgba(27, 58, 107, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lp-card-inner:hover {
    box-shadow: 0 10px 32px rgba(27, 58, 107, 0.18);
    transform: translateY(-4px);
}

.lp-card-img {
    width: 42%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.lp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.lp-card-inner:hover .lp-card-img img {
    transform: scale(1.07);
}

.lp-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--bs-secondary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.8px;
}

.lp-card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.lp-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bs-secondary);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.lp-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--bs-primary);
    margin: 0 0 8px 0;
    line-height: 1.4;
    white-space: normal;
}

.lp-price {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.lp-old-price {
    font-size: 12px;
    color: #aaa;
}

.lp-new-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--bs-secondary);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    background: var(--bs-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
    align-self: flex-start;
    white-space: nowrap;
}

.lp-btn:hover {
    background: var(--bs-secondary);
    color: #fff;
}

.latest-products-carousel.owl-carousel {
    position: relative;
}

.latest-products-carousel .owl-nav .owl-prev,
.latest-products-carousel .owl-nav .owl-next {
    display: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: var(--bs-primary) !important;
    color: #fff !important;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.latest-products-carousel .owl-nav .owl-prev:hover,
.latest-products-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
}

.latest-products-carousel .owl-nav .owl-prev { left: -18px; }
.latest-products-carousel .owl-nav .owl-next { right: -18px; }

.latest-products-carousel .owl-nav.disabled { display: block; }
/*** Latest Products Section End ***/



/*** bestseller Products Start ***/
.products .products-mini .products-mini-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.products .products-mini .products-mini-item .products-mini-img {
 position: relative;
 overflow: hidden;
}

.products .products-mini .products-mini-item .products-mini-img img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img img {
    border-bottom-left-radius: 0 !important;
    transform: scale(1.3);
}

.products .products-mini .products-mini-item .products-mini-img .products-mini-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon {
    opacity: 1;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon:hover {
    background: var(--bs-secondary) !important;
}

.products .products-mini .products-mini-item .products-mini-add {
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bs-white);
    transition: 0.5s;
    z-index: 9;
    opacity: 0;
}

.products .products-mini .products-mini-item:hover .products-mini-add {
    opacity: 1;
    margin-bottom: -75px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** bestseller Products End ***/

/*** Pagination Start ***/
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.pagination .page-link {
    color: var(--bs-primary);
    padding: 8px 14px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #dee2e6;
    border-radius: 50px !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    pointer-events: none;
}

.pagination .page-link:hover:not(.active) {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Pagination End ***/

/*** Mobile Search Panel ***/
#mobile-search-panel {
    display: none;
}

#mobile-search-panel.open {
    display: block;
}
/*** Mobile Search Panel End ***/

/*** Live Search Dropdown ***/
#search-dropdown,
#mobile-search-dropdown {
    display: none;
    position: fixed;
    z-index: 9999;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    overflow: hidden;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f3f5;
    transition: background 0.15s;
}

.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #f8f9fa; }

.search-result-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 4px;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.search-result-name {
    font-size: 13px;
    font-weight: 600;
    color: #1B3A6B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-cat {
    font-size: 11px;
    color: #adb5bd;
    margin-top: 2px;
}

.search-result-price {
    font-size: 13px;
    font-weight: 700;
    color: #E07B00;
    flex-shrink: 0;
}
/*** Live Search Dropdown End ***/

/*** Shop Page Start ***/
.shop .product-categories .categories-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.shop .product-categories .categories-item a {
    transition: 0.5s;
}

.shop .product-categories .categories-item a:hover {
    color: var(--bs-primary) !important;
}

.shop .product-color .product-color-item {
    display: flex;
    padding: 10px 0;
}

.shop .product-color .product-color-item a {
    transition: 0.5s;
}

.shop .product-color .product-color-item a:hover {
    color: var(--bs-secondary);
}

.shop .price {
    padding: 10px 0;
}

.shop .additional-product .additional-product-item {
    padding: 10px 0;
}

.shop .featured-product .featured-product-item {
    display: flex;
    align-items: center;
    justify-content: start;
}

.shop .product-tags .product-tags-items a {
    display: inline-block !important;
    background: var(--bs-white);
    color: var(--bs-dark);
    transition: 0.5;
}

.shop .product-tags .product-tags-items a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

/*** Shop Page End ***/


/*** Single Products Start ***/
.single-product .owl-nav .owl-prev,
.single-product .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -13%;
    font-size: 22px;
    color: var(--bs-primary);
}

.single-product .owl-nav .owl-prev {
    left: 0;
}

.single-product .owl-nav .owl-next {
    right: 0 !important;
}


.single-product .single-carousel .owl-dots {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: 0.5s;
}

.single-product .single-carousel .owl-dots .owl-dot img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    margin-right: 15px;
    border: 2px solid var(--bs-primary);
    transition: 0.5s;
}

.single-product .single-carousel .owl-dots .owl-dot.active img {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    border: 4px solid var(--bs-secondary);
}














.related-product .related-carousel .related-item {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 125px;
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 99;
}

.related-product .related-carousel .related-item:hover .related-item-add {
    background: var(--bs-white);
    margin-bottom: -125px;
    opacity: 1;
}

.related-product .related-carousel .related-item:hover .related-item-inner {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new,
.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner img {
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner img {
    transform: scale(1.1);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details a i {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-item-inner-item .related-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-details {
    opacity: 1;
}


.related-product .owl-nav .owl-prev,
.related-product .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 40px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .owl-nav .owl-prev {
    left: 0;
}

.related-product .owl-nav .owl-next {
    right: 0;
}

.related-product .owl-nav .owl-prev:hover,
.related-product .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
}
/*** Single Products End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** Footer ***/
.site-footer {
    font-size: 14px;
}

.footer-main {
    background: #0f2347;
    color: rgba(255,255,255,0.75);
}

.footer-logo {
    max-height: 52px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-size: 13.5px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-btn:hover {
    background: #E07B00;
    border-color: #E07B00;
    color: white;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E07B00;
    display: inline-block;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a::before {
    content: '›';
    margin-right: 6px;
    color: #E07B00;
    font-weight: 700;
}

.footer-links a:hover {
    color: #E07B00;
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 13.5px;
    line-height: 1.5;
}

.footer-contact li i {
    color: #E07B00;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.footer-bottom {
    background: #0a1a35;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 12.5px;
}

.footer-copy strong {
    color: rgba(255,255,255,0.8);
}

.footer-payment-label {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 0.5px;
}

.footer-pay-icon {
    font-size: 22px;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

.footer-pay-icon:hover {
    color: rgba(255,255,255,0.85);
}
/*** Footer End ***/

/*** Sticky Header ***/
.site-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
}
/*** Sticky Header End ***/

/*** Mobile Navbar ***/
.site-navbar-wrap {
    background: var(--bs-primary);
}

.mobile-nav-icon {
    width: 52px;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-nav-icon:hover {
    background: rgba(255,255,255,0.12);
    color: white;
}

.mobile-nav-toggler {
    width: 58px;
    height: 58px;
    background: #E07B00;
    color: white;
    cursor: pointer;
}

.mobile-nav-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-search-wrap {
    background: rgba(0,0,0,0.15);
}

.mobile-search-input {
    background: rgba(255,255,255,0.9);
}

.mobile-search-input:focus {
    background: white;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.08);
        padding-left: 1.75rem !important;
    }
}
/*** Mobile Navbar End ***/

/*** Carousel Slide Content ***/
.carousel-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: white;
    margin-bottom: 10px;
}

.carousel-badge--orange {
    background: #E07B00;
}

.carousel-heading {
    font-size: clamp(1.4rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1B3A6B;
}

.carousel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 767.98px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: auto;
        bottom: 10px;
    }
}
/*** Carousel Slide Content End ***/

/*** Latest Products Section ***/
.section-latest-products {
    background: #f5f7fb;
}

.lp-card-inner {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(27,58,107,.09);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 180px;
}

.lp-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(27,58,107,.16);
}

.lp-card-img {
    width: 42%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background: #f0f2f7;
}

.lp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.lp-card-inner:hover .lp-card-img img {
    transform: scale(1.06);
}

.lp-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    background: #1B3A6B;
    color: white;
}

.lp-badge--orange {
    background: #E07B00;
}

.lp-card-body {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lp-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #E07B00;
}

.lp-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #1B3A6B;
    line-height: 1.3;
    margin: 4px 0;
}

.lp-price {
    display: flex;
    flex-direction: column;
}

.lp-old-price {
    font-size: 11px;
    color: #aaa;
    text-decoration: line-through;
}

.lp-new-price {
    font-size: 16px;
    font-weight: 800;
    color: #E07B00;
}

.lp-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    background: #1B3A6B;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
    align-self: flex-start;
}

.lp-btn:hover {
    background: #E07B00;
    color: white;
}

.latest-products-carousel .owl-nav {
    position: absolute;
    top: -52px;
    right: 0;
    display: flex;
    gap: 6px;
}

.latest-products-carousel .owl-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    background: white !important;
    border: 2px solid #1B3A6B !important;
    color: #1B3A6B !important;
    font-size: 13px !important;
    transition: all 0.2s;
}

.latest-products-carousel .owl-nav button:hover {
    background: #1B3A6B !important;
    color: white !important;
}

.latest-products-carousel .owl-stage-outer {
    padding-bottom: 10px;
}
/*** Latest Products Section End ***/

/*** Products Section ***/
.section-products {
    background: #fff;
}

.products-filter-tabs .nav-link {
    border: 2px solid #e5e9f0;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #1B3A6B;
    background: transparent;
    transition: all 0.2s;
    margin: 4px;
}

.products-filter-tabs .nav-link:hover,
.products-filter-tabs .nav-link.active {
    background: #1B3A6B;
    border-color: #1B3A6B;
    color: white;
}

.prod-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(27,58,107,.07);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(27,58,107,.15);
}

.prod-card-img {
    position: relative;
    overflow: hidden;
    background: #f4f6fb;
    aspect-ratio: 1 / 1;
}

.prod-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.prod-card:hover .prod-card-img img {
    transform: scale(1.07);
}

.prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    background: #1B3A6B;
    color: white;
    z-index: 2;
}

.prod-badge--orange {
    background: #E07B00;
}

.prod-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,58,107,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
}

.prod-card:hover .prod-overlay {
    opacity: 1;
}

.prod-overlay-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    color: #1B3A6B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.prod-overlay-btn:hover {
    background: #E07B00;
    color: white;
}

.prod-card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.prod-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #E07B00;
}

.prod-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #1B3A6B;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.prod-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.prod-old {
    font-size: 11px;
    color: #aaa;
    text-decoration: line-through;
}

.prod-price {
    font-size: 17px;
    font-weight: 800;
    color: #E07B00;
}

.prod-btn {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 25px;
    background: #1B3A6B;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 4px;
}

.prod-btn:hover {
    background: #E07B00;
    color: white;
}
/*** Products Section End ***/

/*** Product Detail Start ***/

/* Ana görsel */
.prod-detail-main img {
    background: #f8f9fa;
    padding: 20px;
    max-height: 420px;
    object-fit: contain;
}

/* Thumbnail */
.prod-detail-thumb {
    cursor: pointer;
    border: 2px solid #dee2e6 !important;
    opacity: 0.6;
    transition: opacity .2s, border-color .2s;
}

.prod-detail-thumb img {
    background: #f8f9fa;
    padding: 6px;
    height: 72px;
    object-fit: contain;
}

.prod-detail-thumb:hover,
.prod-detail-thumb.active {
    opacity: 1;
    border-color: var(--bs-primary) !important;
}

/* Stok rozetleri */
.prod-detail-stock {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid;
}

.prod-detail-stock--in {
    color: #198754;
    background: #d1e7dd;
    border-color: #a3cfbb;
}

.prod-detail-stock--low {
    color: #997404;
    background: #fff3cd;
    border-color: #ffe69c;
}

.prod-detail-stock--out {
    color: #dc3545;
    background: #f8d7da;
    border-color: #f1aeb5;
}

/* Adet kutusu */
.prod-detail-qty {
    background: #fff;
}

.prod-detail-qty .qty-minus,
.prod-detail-qty .qty-plus {
    background: none;
    cursor: pointer;
    transition: color .15s;
}

.prod-detail-qty .qty-minus:hover,
.prod-detail-qty .qty-plus:hover {
    color: var(--bs-secondary) !important;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input {
    -moz-appearance: textfield;
    pointer-events: none;
}

/* Tab navigasyonu */
.prod-detail-tabs {
    border-bottom: 2px solid #dee2e6;
    gap: 0;
    flex-wrap: wrap;
}

.prod-detail-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.prod-detail-tab:hover {
    color: var(--bs-primary);
}

.prod-detail-tab.active,
.prod-detail-tab[aria-selected="true"] {
    color: var(--bs-primary);
    border-bottom-color: var(--bs-primary);
}

.prod-detail-tab-content {
    background: #fff;
    min-height: 180px;
}

/* Açıklama içeriği */
.prod-description p {
    margin-bottom: 14px;
    line-height: 1.85;
    color: #444;
}

.prod-description ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.prod-description ul li {
    margin-bottom: 6px;
    color: #444;
    line-height: 1.7;
}

/*** Product Detail End ***/

/*** Checkout Start ***/

.co-progress {
    gap: 0;
}

.co-step-ind {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.co-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all .25s;
}

.co-circle span {
    font-weight: 700;
    font-size: 15px;
    color: #adb5bd;
    line-height: 1;
}

.co-label {
    font-size: 12px;
    font-weight: 600;
    color: #adb5bd;
    white-space: nowrap;
}

.co-step-ind.active .co-circle {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.co-step-ind.active .co-circle span {
    color: #fff;
}

.co-step-ind.active .co-label {
    color: var(--bs-primary);
}

.co-step-ind.completed .co-circle {
    background: #198754;
    border-color: #198754;
}

.co-step-ind.completed .co-circle span {
    display: none;
}

.co-step-ind.completed .co-circle::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fff;
    font-size: 14px;
}

.co-step-ind.completed .co-label {
    color: #198754;
}

.co-line {
    flex: 1;
    height: 2px;
    background: #dee2e6;
    margin-bottom: 30px;
    min-width: 50px;
    max-width: 120px;
    transition: background .25s;
}

/*** Checkout End ***/

/*** Cart Start ***/

/* Sepet paneli footer */
.cart-offcanvas-footer {
    flex-shrink: 0;
}

/* Sepet ürün satırı */
.cart-item {
    gap: 12px;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 4px;
    border: 1px solid #e9ecef;
}

/* Miktar kontrolü */
.cart-qty-ctrl {
    background: #f8f9fa;
}

.cart-qty-btn {
    line-height: 1;
    min-width: 28px;
}

.cart-qty-btn:hover {
    background: #e9ecef;
}

/*** Cart End ***/
