@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
/* Genel Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#top {display: none;}

/* Varsayılan HTML ve Body sıfırlama */
html,
body {
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

/* Tüm <a> etiketleri için sıfırlayıcı */
a,
button {
    text-decoration: none;
    /* Alt çizgiyi kaldır */
    transition: all 0.3s ease-in-out;
    /* Hover geçiş efekti */
    color: #000;
}

/* Hover efekti (genel olarak) */
a:hover,
button:hover {
    color: #ff6600;
    text-decoration: none;
}

/* Aktif ve odaklanmış bağlantılar için */
a:focus,
a:active,
button:focus {
    outline: none;
    box-shadow: 0 0 4px rgba(255, 202, 159, 0.5);
    text-decoration: none;
    /* Hafif turuncu bir gölge */
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.category-title {
    font-size: 1.6rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.webheader {
    background-color: #fff;
}

.fixed-top {display: none;}

.logo {
    font-size: 24px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

.nav .nav-link {
    color: #333;
    font-weight: 500;
}

.filter-tags-maindiv {display: none !important;}

/* Header Banner Bölümü */
.topbanner {
    background: #ff6600;
    color: #fff;
    padding: 10px;
}

.topbanner .container {
    position: relative;
}

.topbanner strong {
    display: block;
    font-size: 19px;
    font-weight: 600;
    line-height: 19px;
    text-align: center;
}

/* Header Bölümü */
.topheader {
    padding: 10px 0;
    font-size: 14px;
    /*background-color: #f1f1f1; */
}

.topheader .announcement {
    margin: 0;
}

.announcement a span {
    font-size: 12px;
    top: -5px;
    position: relative;
    display: block;
}

.topheader .btntop {
    margin-left: 15px;
}


.navbar {
    background-color: #f1f1f1;
    border-bottom: 2px solid #ccc;
    padding: 2px;;
}

.navbar ul.list-unstyled {
    margin-bottom: 11px !important;
    margin-left: 10px !important;
}

.navbar a.nav-link {
    text-transform: uppercase;
    font-variant: small-caps;
    font-feature-settings: "c2sc", "smcp";
    /* Tarayıcı uyumluluğunu artırır */
    font-size: 13px;
}

.navbar-nav {
    justify-content: flex-start;
    /* Menüyü sola yaslar */
}

.nav-item:last-child {
    /*margin-left: auto;*/
    /* En sondaki menüyü sağa kaydırır */
}

/* Dropdown menü hover ile açılması */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

/* Alt menülerin girinti (indent) olmaması */
.navbar .dropdown-menu .dropdown-item {
    padding-left: 0;
    font-size: 13px;
}

.headerusermenu {
    font-size: 13px;
}

/* Gölgeyi kaldır */
.navbar .dropdown-menu {
    box-shadow: none !important;
    border: 2px solid #f1f1f1 !important;
    font-size: 14px;
}

.navbar .auto-dropdown {
    width: auto !important;
    min-width: 300px;
    max-width: 100%;
    white-space: nowrap;
    /* Uzun başlıkların alt satıra inmesini engeller */
}

.navbar .dropdown-column {
    flex: 3;
    /* Esnek genişlik almasını sağlar */
}

/* Alt başlıkları daha hizalı yapmak için padding sıfırlama */
.navbar .dropdown-menu ul {
    padding: 0;
    margin: 0;
}

/**/
.homebanner {
    background: #d7d3c8;
}

.orange-bg {
    background-color: #ff6600 !important;
}

.orange-text {
    color: #ff6600 !important;
}

.btn-orange, .btn-primary {
    background-color: #ff6600;
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-orange:hover,
.btn-orange:active,
.btn-orange:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{
    background-color: #df5900;
    color: #fff;
}

.btn-orange:target {
    background-color: #f8ccaf;
    color: #000;
}

.alert-secondary {
    background-color: #f9f9f9;
    border-color: #ddd;
}

/* btn-warning arka plan rengi */
.btn-warning {
    background-color: #ff6600 !important;
    border-color: #ff6600 !important;
    color: #fff !important;
    /* Yazı rengi beyaz */
}

/* btn-warning hover efekti */
.btn-warning:hover {
    background-color: #e65c00 !important;
    border-color: #e65c00 !important;
}

/* btn-outline-warning (Şeffaf buton) */
.btn-outline-warning {
    border-color: #ff6600 !important;
    color: #ff6600 !important;
}

/* btn-outline-warning hover efekti */
.btn-outline-warning:hover {
    background-color: #ff6600 !important;
    color: #fff !important;
}

/* Tüm linklerin focus ve aktif durumundaki mavi çerçeveyi kaldır */
a,
button {
    outline: none !important;
    box-shadow: none !important;
}

/* Bootstrap'te link ve butonların focus gölgesini kaldır */
a:focus,
a:active,
button:focus,
button:active,
.nav-link:focus,
.nav-link:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Liste öğelerinin varsayılan stillerini kaldır */
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Input gölgelerini kaldır */
input,
textarea,
select {
    box-shadow: none !important;
    outline: none !important;
    border: solid #ccc;
    /* İsteğe bağlı: Kenarlık ekleyebilirsin */
}

/* Bootstrap inputlarının focus durumundaki gölgelerini kaldır */
.form-control:focus {
    box-shadow: none !important;
    border-color: 1px solid #ccc !important;
    /* İsteğe bağlı: Kenarlık rengini belirleyebilirsin */
}

/*owl*/
.banner-slider .owl-carousel .item img {
    height: 700px;
}

.owl-carousel .item img {
    width: 100%;
}

.owl-carousel .owl-nav {
    font-size: 32px;
    z-index: 9999;
}

/* banner okları */
.banner-slider .owl-carousel .owl-nav .owl-next,
.banner-slider .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    font-size: 38px;
    width: 50px;
    height: 50px;
    padding: 0 16px;
    opacity: 1;
}

/* kategori ok */
.owl-cat .owl-carousel .owl-nav .owl-next,
.owl-cat .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    font-size: 38px;
    width: 50px;
    height: 50px;
}

/* slider ok */
.urun-slider .owl-carousel .owl-nav .owl-next,
.urun-slider .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    margin-top: -38px;
    font-size: 38px;
    width: 50px;
    height: 50px;
}

.banner-slider .owl-carousel .owl-nav button:hover,
.urun-slider .owl-carousel .owl-nav button:hover,
.owl-cat .owl-carousel .owl-nav button:hover {
    background: none !important;
}

/* Sağ ok */
.owl-carousel .owl-nav .owl-next {
    right: -30px;
}

.owl-carousel .owl-nav .owl-prev {
    left: -30px;
}

.urun-slider .owl-carousel .owl-nav .owl-prev {
    left: -40px;
}

.urun-slider .owl-carousel .owl-nav .owl-next {
    right: -40px;
}

/* Hover yapıldığında okları göster */
.owl-carousel:hover .owl-nav button {
    opacity: 1;
    color: #000;
}

.owl-cat .category-slider {
    position: relative;
    text-align: center;
}

owl-cat .category-item {
    text-align: center;
    width: 120px;
}

.owl-cat .circle-img {
    border-radius: 50%;
    overflow: hidden;
    margin: 10px;
    border: 3px solid #ddd;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.owl-cat .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align: center;
    border-radius: 50%
}

.owl-cat .category-item p {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    color: #000;
    text-align: center;
}

.owl-cat .category-item:hover .circle-img {
    border-color: #ff6600;
}

.widgettitle {
    /* text-transform: uppercase; */
}

/* 3lü banner anasayfa */

.banner-box img {
    width: 100%;
    height: auto;
}

.sidebar .banner-box .banner-radius {
    border-radius: 5px;
}


.banner-content {
    bottom: 20px;
}

.card img {
    object-fit: cover;
}

/* Widget badgeleri */
.custom-product-card {
    overflow: hidden;
    background: rgb(247, 245, 245);
    position: relative;
    padding-bottom: 15px;
    height: 400px;
}

.custom-product-image img {
    width: 100%;
}

.all-badge {
    position: absolute;
    left: 5px;
    top: 0;
}

.custom-badge {
    font-size: 13px;
    padding: 3px 6px;
    background: white;
    display: table;
    margin: 5px 0px;
}

.custom-badge-sale {
    color: red;
}

.custom-badge-new {
    color: black;
}

.custom-badge-free {
    color: #ff6600;
}

.custom-btn {
    width: 50%;
    font-size: 12px;
    border-radius: 15px;
    position: absolute;
    bottom: 10px;
}

.custom-product-card h6 {
    padding-top: 8px;
    padding-left: 8px;
    text-align: left;
}

.custom-product-card p {
    padding-left: 8px;
    text-align: left;
}

.custom-product-card p del.text-muted {
    font-size: 0.9em;
}

.urun-slider .card .card-title {
    font-size: 13px;
    height: 50px;
    display: block;
}

.urun-slider .card .text-secondary {
    font-size: 12px;
}

.urun-slider .card .w-addtocard {
    font-size: 13px;
    cursor: pointer;
    display: inline;
    font-weight: 600;
    padding: 5px 10px;
    margin: 0px 10px 10px 10px;
    border-radius: 40px;
    border: 1px solid #999;
    color: #999;
}

.max-wcontent {
    padding: 40px 150px;
}

.form-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 0.2rem;
}

.form-check {
    font-size: 13px;
}

.forgot-password {
    font-size: 13px;
}

.breadcrumb {
    background: none;
    padding: 10px 0;
    margin: 0 0px 20px 0px;
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    font-size: 12px;
    overflow: hidden;
    /* Taşan içeriği gizle */
    white-space: nowrap;
    border-bottom: 1px solid #f1f1f1;
}

/* Bootstrap ikon oku */
.breadcrumb-item+.breadcrumb-item::before {
    content: "\F285";
    /* Bootstrap Arrow Right Icon */
    font-family: "Bootstrap-icons";
    color: #6c757d;
    padding: 0px px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Küçük Görseller */
.thumb-img {
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.thumb-img:hover,
.thumb-img.active {
    border-color: #ff6600;
}

/* Fullscreen Görsel Alanı */
.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

/* İçerik Merkezi */
.fullscreen-content {
    position: relative;
    text-align: center;
}

/* Büyük Resim */
#fullscreen-img {
    max-width: 90%;
    max-height: 90vh;
}

/* Çarpı Butonu (Bootstrap) */
.close-btn {
    position: absolute;
    top: 0px;
    right: -30px;
    border: none;
    color: #000;
}

/* Ok Butonları */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    font-size: 20px;
    cursor: pointer;
    border: none;
    padding: 10px;
    color: black;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.pg-product-title {
    font-size: 24px;
}

.prd-coise .active {
    border: 1px solid #ff6600;
}

/* Sekmeler için özel tasarım */
.product-tabs {
    border-bottom: 1px solid #ddd;
    margin-top: 40px;
}

.product-tabs .nav-link {
    color: #555;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
}

.product-tabs .nav-link.active {
    color: #ff6600;
    border-bottom: 3px solid #ff6600;
    background: none;
}

.product-tabs .nav-link:hover {
    color: #ff6600;
}

/* İçerik alanı */
.tab-content {
    background: #fff;
    border-radius: 0 0 10px 10px;
}

/* Yorum başlıkları */
.review-item strong {
    font-size: 16px;
}

/* Yıldız ikonları */
.text-warning i {
    font-size: 14px;
}

.review-buttons a,
.yorum-link {
    transition: color 0.3s ease-in-out;
    font-weight: 500;
    font-size: 13px;
}

.review-buttons a:hover {
    color: #f5a623;
    /* Hover efekti */
}

/* Yorum formu alanları */
.rating {
    display: flex;
    flex-direction: row-reverse;
    /* 5 yıldızdan geriye doğru başlasın */
    justify-content: start;
    gap: 5px;
}

.rating input {
    display: none;
    /* Radio button'ları gizle */
}

.rating label {
    font-size: 24px;
    /* Yıldız boyutu */
    color: #ccc;
    /* Pasif yıldız rengi */
    cursor: pointer;
    transition: color 0.3s;
}

/* Yıldızın üzerine gelince veya seçilince rengi değişsin */
.rating label:hover,
.rating label:hover~label,
.rating input:checked~label {
    color: #f5a623;
    /* Seçili yıldız rengi */
}

.tab-pane .btn-orange {
    width: inherit;
}

/* Sidebar üyelik */
.user-content .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #000;
}

.user-content .accordion-body ul li {
    padding: 2px 0;
}

.user-content .accordion-body ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.user-content .accordion-body ul li a:hover {
    color: #ff6600;
}

.user-content .accordion-body ul li .active {
    color: #ff6600;
}

.user-content .accordion-body ul li a:active {
    color: #ff6600;
}

.user-content .btn-check:checked+.btn {
    background-color: #ff7f50;
    /* Seçili buton rengi */
    color: white;
    border-color: #ff7f50;
}

.user-content .form-select,
.user-content input {
    font-size: 14px;
}

.user-content .accordion-button:not(.collapsed)::after {
    display: none;
}

.user-content .accordion-button::after {
    display: none;
}

.user-content .card {
    transition: all 0.3s ease-in-out;
    font-size: 13px;
}

.user-content .card:hover {
    transform: scale(1.02);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.input-group .toggle-password {
    border-left: none;
}

/* Sepet */
.total-product,
.kargo-price {
    font-size: 14px;
}

.basketus {
    border-radius: 5px;
    border: 1px solid #ddd;
}

.basket-area .cart-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

/* Ürün Görseli */
.basket-area .cart-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

/* Ürün Başlığı */
.basket-area .product-title {
    font-size: 14px;
    font-weight: 600;
}

/* Adet Seçimi */
.basket-area .quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.basket-area .quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 18px;
    line-height: 18px;
}

/* Mobilde Dikey Hizalama */
.basket-area .quantity-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.now-product-item {
    border-bottom: 1px solid #ddd;
}

.copy-btn {
    transition: all 0.3s ease-in-out;
    font-size: 12px;
}

/* kategori filtre ve sidebar alanı*/
.filter-panel {
    background: #fff;
}

.filter-title {
    font-size: 15px;
    font-weight: bold;
}

.filter-info {
    font-size: 14px;
    color: #888;
}

/* filtre menüsü Accordion Başlıkları */
.filter-panel .accordion-button {
    font-size: 16px;
    font-weight: 600;
    background-color: #ffffff;
    color: #333;
    border: none;
    padding: 15px 15px 3px 15px;
}

.filter-panel .accordion-button::after {
    display: none;
}

.filter-panel .accordion-button:focus {
    box-shadow: none;
}

.filter-panel .accordion-body {
    padding: 15px;
}

.filter-panel .accordion-body a {
    display: block;
    padding: 3px 0;
    color: #555;
    text-decoration: none;
}

.filter-panel .accordion-body a:hover {
    color: #ff6600;
}

.filter-tags .badge {
    position: relative;
    text-align: left;
    font-weight: 600;
    border-radius: 50px;
    padding: 9px 42px 9px 19px;
    margin-bottom: 5px;
}

.filter-tags .badge .filt-tit {
    font-weight: 400;
}

.filter-tags .btn-close {
    position: absolute;
    right: 12px;
    top: 11px;
}

.filter-tags .btn-sm {
    font-size: 12px;
    margin-bottom: 11px;
}

.clear-selection {
    font-size: 12px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 2px 0;
}

.filter-panel .category-list li {
    padding: 0px 0 !important;
}

.category-list li a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

.category-list li a:hover {
    color: #ff6600;
    text-decoration: none;
}

.subcategories {
    padding-left: 15px;
    font-size: 14px;
    color: #666;
}

.filter-options {
    display: block;
    flex-direction: inherit;
}

.filter-options .form-check {
    margin-bottom: 5px;
}

/* Renk Filtreleri */
.filter-panel .color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.filter-panel .color-filter {
    display: flex;
    align-items: center;
    cursor: pointer;
    float: left;
}

.filter-panel .color-checkbox {
    display: none;
}

.filter-panel .color-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #f1f1f1;
    transition: all 0.3s ease-in-out;
}

/* Seçili renk efekti */
.filter-panel .color-checkbox:checked+.color-box {
    border: 2px solid #ff6600;
}

/* ürün dizilimi düzeltmeleri*/

.product-card {
    border-radius: 0px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    border-radius: 0px;
}

.urun-slider .product-card {
    border: 1px solid #ddd !important;
}

.product-card .product-image {
    position: relative;
}

.product-card .product-image img {
    width: 100%;
}

.product-card .badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-card .badge {
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 5px;
}

.product-card .wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #ff6600;
}

.product-card .wishlist-btn:hover {
    color: #ff6600;
}

.product-card .product-info {padding:7px;}
.user-content .product-card .product-info {padding:0px;}


.product-card .product-title {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    height: 50px;
    overflow: hidden;
}

.product-card .product-price {
    font-size: 16px;
    font-weight: bold;
    color: #ff6600;
    height: 30px;
}

.product-card .old-price {
    text-decoration: line-through;
    font-size: 12px;
    color: gray;
    height: 15px;
    display: block;
}

.product-card .product-rating {
    font-size: 14px;
    margin-top: 5px;
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.product-card .product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

.product-card .product-image:hover .hover-img {
    opacity: 1;
}

.product-card .product-image:hover .primary-img {
    opacity: 0;
}

.product-card .fw-bold {
    font-size: 13px;
    font-weight: 400 !important;
}

.product-card .product-info button {
    border-radius: 50px;
    padding: 4px 20px;
    z-index: 100;
}

.active>.page-link,
.page-link {
    color: #e65c00;
}

.active>.page-link,
.page-link:hover,
.page-link:focus {
    color: #e65c00;
}

.active>.page-link,
.page-link.active {
    background-color: #e65c00;
    border-color: #e65c00;
    color: #fff;
}

.filter-zoom {
    position: sticky;
    top: 20px;  /* Üstte 20px boşluk bırak */
    max-height: calc(140vh - 20px); /* Ekran yüksekliği kadar olsun ancak esneyebilsin */
    /* overflow-y: auto; /* Kaydırılabilir olsun */
    margin-bottom: 20px;
}

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

footer .seo-sec {
    font-size: 13px;
    margin-top: 100px;
}

footer .seo-sec h2 {font-size: 26px;}
/* Info Section (Genel Alan) */
.info-section {
    padding: 15px 0;
    width: 100%;
    background-color: #f9f8f6;
}

.footer-bg {
    background-color: #f9f8f6;
}
.info-section::before {
    content: "";
    display: block;
    height: 2px;
    background-color: #ddd;
    margin-bottom: 25px;
}
.info-section::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #ddd;
    margin-bottom: 25px;
    margin-top: 20px;
}
.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    height: 100%;
}
.info-box i {
    font-size: 40px;
    color: #ff6600;
    transition: color 0.3s ease-in-out;
    flex-shrink: 0;
}
.info-box:hover i {
    color: #ff6600;
}
.info-text h5 {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin: 0;
}
.info-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}


.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}
.footer-links a {
    color: #555;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: 0.3s;
    font-size: 13px;
}
.footer-links a:hover {
    color: #ff6600;
}
.social-icons a {
    margin-right: 10px;
    color: #555;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #ff6600;
}
.newsletter-input {
    border-radius: 50px;
    padding: 10px;
    border: 1px solid #ccc;
    width: 100%;
}
.newsletter-button {
    background: #ff6600;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    border: none;
    margin-left: 10px;
}
.newsletter-button:hover {
    background: #ff6600;
}
.footer-section {
    margin-bottom: 20px;
    text-align: left;
}
.footer-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
}
.footer-links i {
    font-size: 22px;
    margin-right: 10px;
    color: #555;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.footer-links i:hover {
    color: #007bff;
}
.footer-search-container {
    display: flex;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #ccc;
    background-color: white;
    padding: 6px 7px;
    margin-top: 10px;
}
.footer-search-container input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 6px;
    font-size: 14px;
}
.footer-search-container button {
    border: none;
    background: #ff6600;
    color: white;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.footer-search-container .bi-envelope-open-heart { margin-left: 15px;}
.footer-search-container button:hover {
    background: #ff6600;
}
.footer-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    margin-bottom: 20px;
}
.copyright {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.company-desc {font-size: 14px;padding-bottom: 30px;}

.text-muted {font-size: 13px; color: #ccc;}
.additionalimg-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0px;
}
.additionalimg {
    border-bottom: 5px solid rgba(238, 238, 238, .63);
    width: 100%
}
.additionalimg:hover {
    border-bottom: 5px solid #fd7e14;
    transition: .3s
}
.product-label {
    max-width: 88px;
    max-height: 88px;
    overflow: hidden;
    position: absolute;
    z-index: 99
}
.product-label.label1 {
    top: 0px;
    left: 0px;
    right: auto
}
.product-label.label2 {
    top: 5px;
    right: 0;
    left: auto
}
.product-label.label3 {
    bottom: 0px;
    left: 0;
    right: auto
}
.product-label.label4 {
    bottom: 0px;
    right: 0;
    left: auto
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff !important;
    background-color: #ff6600;
}


#search {
    width: 100%;
    display: table
}

#search input {
    display: table-cell;
    border: none;
    padding: 5px 7px;
    font-size: 13px;
    width: 100%;
    height: 34px;
}

#search .categories {
    display: table-cell;
    width: 186px
}

#search select {
    border: none;
    color: #222;
    padding: 10px 8px;
    cursor: pointer;
    height: 40px;
    border-left: 1px solid;
    border-color: #ca6b00;
    border-radius: 0;
}

.search_wrapper {
    position: relative;
}
#ajax_search_results {
    margin: 0;
    padding: 0;
    text-align: left;
    position: absolute;
    top: 100%; /* input'un altına yerleşir */
    left: 0;
    right: 0;
    z-index: 1005;
    background-color: #fff;
    border: 1px solid #712580;
    border-radius: 3px;
    font-size: 14px;
    width: 100%;
    list-style-type: none;
}

#ajax_search_results .highlighted {
    color: #FFF;
    background-color: #d0d2d0;
    opacity: 0.6;
}

#ajax_search_results .live_row {
    display: flex;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid #eaeaea;
}

#ajax_search_results .live_image {
    width: 46px;
    flex-shrink: 0;
}

#ajax_search_results .live_image img {
    min-width: 40px;
    max-width: 100%;
    height: auto;
    display: block;
}

#ajax_search_results .live_name {
    flex-grow: 1;
    padding-left: 6px;
    max-width: 420px;
}

#ajax_search_results .live_name b {
    color: #f28c1a;
}

#ajax_search_results .live_price {
    text-align: right;
    width: 114px;
    flex-shrink: 0;
    display: none;
}

#ajax_search_results .live_price p {
    margin: 0;
    font-size: 15px;
    display: none;
}
.product-label { position: absolute; width: 50px; height: 50px; }
.label0 { top: 0; left: 0; }
.label1 { top: 0; right: 0; }
.label2 { bottom: 0; left: 0; }
.label3 { bottom: 0; right: 0; }
.product-label img { width: 100%; height: auto; }


.scrollup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #888; /* Koyu gri */
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scrollup i {
    font-size: 16px;
}

.scrollup:hover {
    background-color: #0d6efd; /* Bootstrap Primary */
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.3);
}

/* Adım Göstergesi */
.page-checkouts-checkout, .page-checkouts-step2{background: #f8f9fa}
.stepper {
    gap: 20px;
}

/* Accordion Stilleri */
.checkout .accordion-button {
    background-color: #fff;
    font-weight: 600;
    color: #333;
    padding: 15px;
}

.checkout .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #ff6200;
    box-shadow: none;
}

.checkout .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #ff6200;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
}

.checkout .accordion-button.collapsed .step-number {
    background-color: #6c757d;
}

.checkout .accordion-body {
    padding: 6px;
    font-size: 14px;
}

.checkout .accordion-item {
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
}
.checkout .accordion-item .p-3 {
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    max-height: 290px;
    overflow-y: scroll;
}

.checkout .accordion-item .p-3 p {
    font-size: 14px;
    line-height: 1.5;
}

.checkout .accordion-item .p-3 a {
    color: #6c757d;
    text-decoration: underline;
}

.checkout .accordion-item .p-3 a:hover {
    color: #ff6200;
}

/* Kart Stilleri */
.checkout .card {
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.checkout .card-header {
    background-color: #fff;
    border-bottom: none;
    padding: 15px 20px;
}

.checkout .card-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.checkout .card-body {
    padding: 20px;
}

/* Devam Et Butonu */
.btn-continue {
    background-color: #ff6200;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.btn-continue:hover {
    background-color: #e55a00;
}

/* Sepet Özeti */
.cart-summary {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cart-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.cart-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details p {
    font-size: 14px;
    font-weight: 500;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
}

.summary-row {
    font-size: 14px;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.summary-row.total {
    font-size: 16px;
    font-weight: 700;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .stepper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .step {
        font-size: 12px;
    }

    .step-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .cart-item-details p {
        font-size: 12px;
    }

    .cart-item-price {
        font-size: 12px;
    }

    .summary-row {
        font-size: 12px;
    }

    .summary-row.total {
        font-size: 14px;
    }
}
.error {
    display: block;
    color: red;
    font-size: 0.875rem;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
}
.nav-link{cursor: pointer}
.error-container {
    text-align: center;
    padding: 60px 20px;
}
.error-code {
    font-size: 120px;
    font-weight: 700;
    color: #dc3545;
}
.error-message {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
#colorbox, #cboxOverlay, #cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden
}
#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden
}
#cboxMiddleLeft, #cboxBottomLeft {
    clear: left
}
#cboxContent {
    position: relative
}
#cboxLoadedContent {
    overflow: auto
}
#cboxTitle {
    margin: 0
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    cursor: pointer
}
.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none
}
.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0
}
#colorbox, #cboxContent, #cboxLoadedContent {
    box-sizing: content-box
}
#cboxOverlay {
    background: #333
}
#cboxContent {
    background: #fff;
    overflow: hidden;
    border: none;
    padding: 20px;
    border-radius: 3px
}
.quickview #cboxContent {
    padding-right: 7px;
    padding-top: 35px
}
.login #cboxContent {
    padding: 0
}
.cboxIframe {
    background: #fff
}
#cboxError {
    padding: 50px;
    border: 1px solid #ccc
}
#cboxTitle {
    display: none !important
}
#cboxCurrent {
    display: none !important
}
#cboxSlideshow {
    display: none
}
#cboxPrevious, #cboxNext {
    position: absolute;
    top: 50%;
    margin-top: -40px;
    display: none;
    text-indent: -9999px
}
#cboxPrevious {
    left: 40px
}
#cboxNext {
    right: 90px
}
#cboxPrevious:after, #cboxNext:after {
    font-family: fontAwesome;
    font-size: 28px;
    line-height: 48px;
    text-align: center;
    background: #666;
    background: rgba(51, 51, 51, 0.5);
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    text-indent: 0;
    color: #fff;
    transition: all 300ms;
    border-radius: 3px
}
#cboxPrevious:hover:after, #cboxNext:hover:after {
    background: #333
}
#cboxPrevious:after {
    content: "\f104"
}
#cboxNext:after {
    content: "\f105"
}
#cboxClose {
    position: absolute;
    font-size: 0;
    top: 2px;
    right: 32px;
    text-indent: -9999px
}
#cboxClose:hover:after {
    color: #666;
    transition: all 300ms
}
#cboxClose:after {
    content: "\f105 \f104";
    font-family: fontAwesome;
    letter-spacing: -2px;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: 0;
    color: #999;
    transition: all 300ms
}
#hesapMenu::after {
    display: none !important;
}
#collapseFilters .accordion-body:not(:first-of-type) {
    border-top: 0;
    max-height: 240px;
    overflow-y: scroll;
}

.filter-div a {
    font-size: 13px;
}
.filter-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #6c757d;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
    background-color: white;
}

.filter-checkbox.checked {
    background-color: #0d6efd;
}

.filter-checkbox.checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Hover efekti */
a:hover .filter-checkbox {
    border-color: #0d6efd;
}
.alt-accordion-body .accordion-item{
    border-width: 1px 0px 0px 0px;
    border-top:0px solid rgb(204, 204, 204);
}
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    width: 100%;
    margin-top: 6px;
}

.pagination a,
.pagination b {
    position: relative;
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: rgb(230, 92, 0);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    margin: 0; /* boşluk yok */
}

.pagination a:hover,
.pagination a:focus,
.pagination b:hover,
.pagination b:focus {
    color: #fff;
    background-color: rgb(230, 92, 0);
    border-color: rgb(230, 92, 0);
    text-decoration: none;
}

.pagination b {
    z-index: 3;
    color: #fff;
    background-color: rgb(230, 92, 0);
    border-color: rgb(230, 92, 0);
    cursor: default;
}

.pagination .results {
    margin-left: auto;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
}

.rtl .pagination .results {
    margin-left: 0;
    margin-right: auto;
}

.pagination .links {
    display: flex;
    flex-wrap: wrap;
}
/* son eklenenler 30.05 */
.product-info .my-3 .badge {    font-size: 14px;
    border-radius: 0;
    padding: 10px 15px;}
.product-info .my-3  .bg-secondary {background-color: #68a338 !important; color: #fff;}
.bi-heart.active::before {
    content: "\f415";
    color:rgb(230, 92, 0);
}

.form-error {font-size: 12px !important;}

.border-inner-cat {
    background-color: white;
    padding: 3px; /* Beyaz çerçeve kalınlığı */
    border-radius: 50%;
}
/* .show sınıfı eklendiğinde görünür olur */
.hedcat-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* .show sınıfı eklendiğinde görünür olur */
.nav-item.dropdown.show .hedcat-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.owl-theme .owl-dots, .owl-theme .owl-nav .urun-slider { padding-top: 10px;}

.v_menu_trigger {display: none;}