/* ============================================
   BAUHAUS RENK PALETİ VE CSS DEĞİŞKENLERİ
   ============================================ */
:root {
    --bauhaus-red: #e31c23;
    --bauhaus-dark-red: #c71920;
    --bauhaus-black: #000000;
    --bauhaus-dark-gray: #313131;
    --bauhaus-gray: #333333;
    --bauhaus-light-gray: #f5f5f5;
    --bauhaus-white: #ffffff;
    --bauhaus-border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    color: #313131;
    font-size: 14px;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop için container genişliği - sağdan soldan az boşluk */
@media (min-width: 992px) {
    .container {
        max-width: calc(100% - 40px);
        padding: 0 20px;
    }
}

/* Büyük ekranlar için maksimum genişlik */
@media (min-width: 1400px) {
    .container {
        max-width: calc(100% - 60px);
        padding: 0 30px;
    }
}

/* Çok büyük ekranlar için maksimum genişlik */
@media (min-width: 1920px) {
    .container {
        max-width: calc(100% - 80px);
        padding: 0 40px;
    }
}

/* ============================================
   DESKTOP HEADER
   ============================================ */
.desktop-header {
    background: var(--bauhaus-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: block;
    border-bottom: 1px solid var(--bauhaus-border);
}

.mobile-header {
    display: none;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: none;
    background: var(--bauhaus-black);
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: var(--bauhaus-white);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
    font-weight: 400;
}

.top-link:hover {
    color: var(--bauhaus-red);
}

.top-link.highlight {
    color: var(--bauhaus-red);
    font-weight: 600;
}

.cart-link {
    color: var(--bauhaus-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
}

.cart-link:hover {
    color: var(--bauhaus-red);
}

.cart-link .cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
}

.cart-badge {
    background: var(--bauhaus-red);
    color: var(--bauhaus-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: var(--bauhaus-white);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #435c8f;
    letter-spacing: 1.5px;
}

.search-box {
    flex: 1;
    margin: 0 40px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 120px 12px 20px;
    border: 2px solid var(--bauhaus-border);
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    background: var(--bauhaus-white);
    font-family: 'Archivo', sans-serif;
}

.search-input:focus {
    border-color: var(--bauhaus-red);
    background: var(--bauhaus-white);
    box-shadow: 0 0 0 3px rgba(227, 28, 35, 0.1);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bauhaus-red);
    color: var(--bauhaus-white);
    border: none;
    padding: 10px 28px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    background: var(--bauhaus-dark-red);
    box-shadow: 0 2px 8px rgba(227, 28, 35, 0.3);
}

/* ============================================
   CATEGORY MENU BAR & DROPDOWN
   ============================================ */
.categories-section {
    background: white;
    padding-bottom: 20px;
}

.category-menu-wrapper {
    display: flex;
    align-items: center;
    background: #fafbfc;
    border-bottom: 1px solid #e8ecef;
    position: relative;
}

.category-menu-bar {
    display: flex;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.category-menu-bar::-webkit-scrollbar {
    display: none;
}

.category-menu-item {
    flex: 0 0 auto;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.category-menu-item.hidden-item {
    display: none;
}

.category-menu-item.hidden-item.show {
    display: flex;
}

.more-categories-btn.active i {
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.category-menu-text {
    font-size: 12px;
    font-weight: 600;
    color: #5a6c7d;
}

.category-menu-item:hover {
    background: white;
    border-bottom-color: #435c8f;
}

.category-menu-item:hover .category-menu-text {
    color: #435c8f;
}

.more-categories-btn {
    flex: 0 0 auto;
    padding: 14px 18px;
    background: #fafbfc;
    border: none;
    border-left: 1px solid #e8ecef;
    cursor: pointer;
    transition: all 0.3s;
    color: #5a6c7d;
    font-size: 15px;
}

.more-categories-btn:hover {
    background: #435c8f;
    color: white;
}

.more-categories-btn.active i {
    transform: rotate(45deg);
}

.category-dropdown {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 100%;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 1000;
    display: none;
    overflow: visible;
    border-radius: 0 0 8px 8px;
}

/* Desktop için category dropdown genişliği */
@media (min-width: 992px) {
    .category-dropdown {
        width: calc(100% - 40px);
    }
}

@media (min-width: 1400px) {
    .category-dropdown {
        width: calc(100% - 60px);
    }
}

@media (min-width: 1920px) {
    .category-dropdown {
        width: calc(100% - 80px);
    }
}

.category-dropdown.active {
    display: block;
}

.dropdown-content {
    padding: 28px 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 36px;
}

.dropdown-item {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0;
    display: block;
    transition: all 0.3s;
    font-weight: 500;
}

.dropdown-item:hover {
    color: #435c8f;
    padding-left: 8px;
}

/* ============================================
   SCROLLABLE CATEGORY ICONS
   ============================================ */
.category-scroll-wrapper {
    position: relative;
    padding: 28px 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bauhaus-white);
    border: 2px solid var(--bauhaus-border);
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    color: var(--bauhaus-dark-gray);
}

.scroll-btn:hover {
    background: var(--bauhaus-red);
    border-color: var(--bauhaus-red);
    color: var(--bauhaus-white);
    box-shadow: 0 2px 8px rgba(227, 28, 35, 0.3);
}

.scroll-left {
    left: -10px;
}

.scroll-right {
    right: -10px;
}

.category-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 18px;
    padding: 0 50px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.category-scroll.grabbing {
    cursor: grabbing;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--bauhaus-dark-gray);
    transition: all 0.2s;
    flex: 0 0 auto;
    min-width: 100px;
    background: white;
}

.category-item:hover .category-icon {
    background: var(--bauhaus-red);
    transform: scale(1.08);
    border-color: var(--bauhaus-red);
}

.category-item:hover .category-name {
    color: var(--bauhaus-red);
}

/* Renkli kategori kutuları */
.category-colored {
    padding: 15px 10px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    transition: all 0.3s !important;
    min-width: 120px !important;
    width: auto !important;
}

.category-colored:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* İkon wrapper - resimlerin etrafındaki alan */
.category-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: var(--bauhaus-light-gray);
    display: flex;
    align-items: center;
    border: 2px solid var(--bauhaus-border);
    justify-content: center;
    font-size: 36px;
    margin-bottom: 8px;
    transition: all 0.3s;
    border: 1px solid #e8ecef;
}

.category-name {
    font-size: 11px;
    text-align: center;
    color: var(--bauhaus-dark-gray);
    transition: color 0.2s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 10px;
}

/* ============================================
   BANNER SECTION WITH SLIDER
   ============================================ */
.banner-section {
    padding: 28px 0 10px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    margin-bottom: 10px;
}

.banner-large {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding-bottom: 70px;
}

.slider-container {
    position: relative;
    height: 520px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.slider-container.grabbing {
    cursor: grabbing;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.banner-counter {
    position: absolute;
    top: 14px;
    right: 14px;
    background: white;
    padding: 5px 14px;
    border-radius: 18px;
    font-size: 13px;
    z-index: 10;
    font-weight: 500;
    color: #5a6c7d;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.banner-text {
    position: absolute;
    top: 38px;
    left: 38px;
    background: white;
    padding: 18px 26px;
    transform: rotate(-1.5deg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 5;
    border-radius: 6px;
}

.banner-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.banner-title-red {
    font-size: 24px;
    font-weight: 700;
    color: #435c8f;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 10;
    color: #5a6c7d;
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.08);
    color: #435c8f;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slider-nav.prev {
    left: 18px;
}

.slider-nav.next {
    right: 18px;
}

.thumbnail-container {
    display: flex;
    gap: 8px;
    padding: 0 14px 14px 14px;
    background: transparent;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.thumbnail {
    width: 72px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0.5;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.04);
}

.thumbnail.active {
    border-color: #435c8f;
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-side {
    position: relative;
    background: #34495e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    height: 551px;
}

.banner-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.product-info {
    position: absolute;
    bottom: 28px;
    left: 28px;
    color: white;
}

.product-name {
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
}

.product-power {
    font-size: 11px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #da5555;
    margin-bottom: 4px;
}

.product-old-price {
    font-size: 13px;
    text-decoration: line-through;
    opacity: 0.6;
}

.banner-magazine {
    background: #435c8f;
    border-radius: 12px;
    padding: 36px;
    text-align: center;
    color: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.magazine-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.magazine-cta {
    font-size: 21px;
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-bottom: 1px solid #e8ecef;
}

.menu-toggle, .menu-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #5a6c7d;
}

.menu-text {
    font-size: 9px;
    margin-top: 4px;
    font-weight: 500;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 22px;
    color: #5a6c7d;
}

.cart-icon {
    position: relative;
}

.cart-icon .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #435c8f;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.mobile-menu-content {
    padding: 18px;
}

.mobile-search-menu {
    margin-bottom: 18px;
}

.menu-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 18px;
}

.menu-list {
    border-top: 1px solid #e8ecef;
}

.menu-item {
    border-bottom: 1px solid #e8ecef;
}

.menu-item-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-icon {
    font-size: 24px;
}

/* Mobil menü ikonları - sadece mobilde görünür */
.menu-icon-mobile {
    font-size: 18px;
    color: #435c8f;
    width: 24px;
    text-align: center;
}

.menu-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

.menu-arrow {
    font-size: 15px;
    color: #5a6c7d;
    transition: transform 0.3s;
}

.menu-arrow.rotated {
    transform: rotate(90deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 46px;
}

.submenu.active {
    max-height: 1000px;
    padding-bottom: 14px;
}

.submenu-item {
    display: block;
    padding: 9px 0;
    color: #5a6c7d;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    font-weight: 500;
}

.submenu-item:hover {
    color: #435c8f;
    padding-left: 8px;
}

/* ============================================
   PRODUCT SECTIONS - BAUHAUS STYLE
   ============================================ */
.product-section {
    padding: 50px 0;
    background: var(--bauhaus-white);
}

.product-section:nth-child(even) {
    background: var(--bauhaus-light-gray);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--bauhaus-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all {
    color: var(--bauhaus-red);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.view-all:hover {
    gap: 11px;
    color: var(--bauhaus-dark-red);
}

/* Product Slider */
.product-slider-wrapper {
    position: relative;
    padding: 0 56px;
}

.product-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
    cursor: grab;
    user-select: none;
}

.product-slider.grabbing {
    cursor: grabbing;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-slider .product-card {
    width: calc(25% - 14px);
    min-width: 280px;
    flex: 0 0 auto;
}

.product-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e8ecef;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 18px;
    color: #5a6c7d;
}

.product-scroll-btn:hover {
    background: #435c8f;
    border-color: #435c8f;
    color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

.product-scroll-left {
    left: 0;
}

.product-scroll-right {
    right: 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    row-gap: 12px;
}

/* Product Card - Bauhaus Style */
.product-card {
    background: var(--bauhaus-white);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--bauhaus-border);
}

/* Grid'deki kartlar için genişlik */
.product-grid .product-card {
    width: 100%;
    min-width: auto;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    border-color: var(--bauhaus-red);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 14px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--bauhaus-white);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.discount {
    background: var(--bauhaus-red);
}

.product-badge.bestseller {
    background: var(--bauhaus-black);
}

.product-badge.new {
    background: var(--bauhaus-red);
}

.product-favorite {
    position: absolute;
    top: 11px;
    right: 11px;
    background: white;
    border: none;
    width: 36px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
    font-size: 16px;
    color: #435c8f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-favorite:hover {
    transform: scale(1.12);
    background: #f0edfc;
}

.product-favorite.active i {
    font-weight: 900;
}

.product-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bauhaus-white);
    padding: 20px;
    border-bottom: 1px solid var(--bauhaus-border);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info-card {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 14px;
    color: var(--bauhaus-dark-gray);
    margin-bottom: 10px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 11px;
}

.product-rating i {
    color: #fdcb6e;
    font-size: 13px;
}

.rating-count {
    font-size: 12px;
    color: #5a6c7d;
    margin-left: 4px;
}

.product-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.old-price {
    font-size: 13px;
    color: var(--bauhaus-gray);
    text-decoration: line-through;
    font-weight: 400;
}

.new-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--bauhaus-red);
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: var(--bauhaus-black);
    color: var(--bauhaus-white);
    border: 2px solid var(--bauhaus-black);
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart:hover {
    background: var(--bauhaus-red);
    border-color: var(--bauhaus-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

/* ============================================
   FOOTER - BAUHAUS STYLE
   ============================================ */
.footer {
    background: var(--bauhaus-dark-gray);
    color: var(--bauhaus-white);
    padding: 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--bauhaus-red);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    font-size: 15px;
    margin-bottom: 24px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #435c8f, #da5555);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-section strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    padding: 6px 0;
    position: relative;
}

.footer-section a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #435c8f;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.footer-section a:hover {
    color: white;
    padding-left: 8px;
}

.footer-section a:hover::before {
    width: 30px;
}

.footer-section a i {
    font-size: 11px;
    opacity: 0.5;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #435c8f;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.newsletter-btn {
    padding: 14px 24px;
    background: #435c8f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 42px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.social-link:hover {
    background: #435c8f;
    border-color: #435c8f;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 52px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    background: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.footer-bottom a {
    color: #435c8f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

.footer-stats {
    display: none;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(108, 92, 231, 0.5);
}

.contact-info-icon {
    width: 36px;
    height: 48px;
    background: #435c8f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 16px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* WhatsApp & Call Buttons */
.contact-buttons {
    position: fixed;
    left: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.contact-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1eb854;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: #435c8f;
}

.call-btn:hover {
    background: #435c8f;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    background: #435c8f;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #5f4fd1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    z-index: 1000;
}

.mobile-nav-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 62px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #5a6c7d;
    font-size: 10px;
    transition: all 0.3s;
    border-top: 2px solid transparent;
    font-weight: 500;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #435c8f;
    border-top-color: #435c8f;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    position: relative;
}

.mobile-nav-item .cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #435c8f;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

@media (min-width: 769px) {
    .cart-sidebar {
        max-width: 450px;
    }
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 2px solid #f1f3f5;
    background: #fafbfc;
}

.cart-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-title i {
    color: #435c8f;
    font-size: 22px;
}

.cart-close {
    background: white;
    border: 1px solid #e8ecef;
    font-size: 20px;
    color: #5a6c7d;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
    width: 38px;
    height: 38px;
}

.cart-close:hover {
    background: #435c8f;
    border-color: #435c8f;
    color: white;
    transform: rotate(90deg);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #95a5a6;
    text-align: center;
    padding: 40px 20px;
}

.cart-empty i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.2;
    color: #435c8f;
}

.cart-empty-text {
    font-size: 18px;
    font-weight: 600;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.cart-empty-subtext {
    font-size: 14px;
    color: #95a5a6;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: #fafbfc;
    border-radius: 10px;
    border: 1px solid #f1f3f5;
    transition: all 0.3s;
}

.cart-item:hover {
    border-color: #e8ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: white;
    border-radius: 6px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #435c8f;
    margin-bottom: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #e8ecef;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #5a6c7d;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: #435c8f;
    border-color: #435c8f;
    color: white;
}

.quantity-value {
    font-size: 14px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 4px;
    font-size: 18px;
    align-self: flex-start;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 2px solid #f1f3f5;
    background: #fafbfc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid #f1f3f5;
}

.cart-total-label {
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
}

.cart-total-price {
    font-size: 24px;
    font-weight: 700;
    color: #435c8f;
}

.cart-checkout-btn {
    width: 100%;
    padding: 16px;
    background: #435c8f;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-checkout-btn:hover {
    background: #5f4fd1;
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.3);
    transform: translateY(-2px);
}

.cart-checkout-btn i {
    font-size: 18px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .mobile-logo .logo-icon {
        font-size: 22px;
    }

    .mobile-logo .logo-text {
        font-size: 18px;
        font-weight: 600;
        color: #435c8f;
        letter-spacing: 0.8px;
    }

    .mobile-search {
        padding: 0 14px 14px;
    }

    .search-box-mobile {
        position: relative;
    }

    .search-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #95a5a6;
        font-size: 15px;
    }

    .search-input-mobile {
        width: 100%;
        padding: 11px 90px 11px 42px;
        border: 1px solid #dfe6e9;
        border-radius: 24px;
        font-size: 13px;
        outline: none;
        background: #f8f9fa;
    }

    .search-btn-mobile {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        background: #435c8f;
        color: white;
        border: none;
        padding: 7px 18px;
        border-radius: 18px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 500;
    }

    .category-menu-wrapper {
        display: none;
    }

    .category-dropdown {
        display: none !important;
    }

    .more-categories-btn {
        display: none;
    }

    .scroll-btn {
        display: none;
    }

    .category-scroll {
        padding: 14px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .category-item {
        scroll-snap-align: start;
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }

    .slider-nav {
        display: none;
    }

    .slider-container {
        height: 280px;
        cursor: default;
    }

    .banner-side {
        height: 280px;
    }

    .banner-text {
        padding: 14px 18px;
        top: 28px;
        left: 18px;
    }

    .banner-title,
    .banner-title-red {
        font-size: 18px;
    }

    .product-info {
        bottom: 18px;
        left: 18px;
    }

    .product-price {
        font-size: 22px;
    }

    .magazine-title {
        font-size: 22px;
    }

    .magazine-cta {
        font-size: 16px;
    }

    .thumbnail-container {
        display: none;
    }

    .slider-container {
        touch-action: pan-y;
    }
    
    .slide img {
        pointer-events: none;
    }

    /* PRODUCT SECTIONS MOBILE */
    .product-section {
        padding: 22px 0;
        margin-bottom: 0;
    }

    .section-header {
        margin-bottom: 18px;
        padding: 0 11px;
    }

    .section-title {
        font-size: 16px;
    }

    .view-all {
        font-size: 12px;
    }

    .product-slider-wrapper {
        padding: 0;
    }

    .product-scroll-btn {
        display: none;
    }

    .product-slider {
        display: flex !important;
        gap: 11px !important;
        padding: 0 11px !important;
        overflow-x: auto !important;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        cursor: default !important;
    }

    .product-slider::-webkit-scrollbar {
        display: none;
    }

    .product-slider .product-card {
        width: 100% !important;
        min-width: 100% !important;
        flex: 0 0 auto !important;
        scroll-snap-align: start;
    }

    .product-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 11px;
        padding: 0 11px;
    }

    .product-grid .product-card {
        width: 100% !important;
        min-width: auto !important;
        flex: none !important;
    }

    .product-card {
        border-radius: 10px;
        box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    }

    .product-badge {
        top: 7px;
        left: 7px;
        padding: 4px 8px;
        font-size: 9px;
        border-radius: 14px;
    }

    .product-favorite {
        top: 7px;
        right: 7px;
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .product-image {
        height: 150px;
        padding: 18px;
        background: #fafbfc;
    }

    .product-info-card {
        padding: 11px;
    }

    .product-title {
        font-size: 11px;
        min-height: 30px;
        line-height: 1.3;
        margin-bottom: 7px;
    }

    .product-rating {
        margin-bottom: 7px;
        gap: 2px;
    }

    .product-rating i {
        font-size: 10px;
    }

    .rating-count {
        font-size: 9px;
    }

    .product-prices {
        gap: 2px;
        margin-bottom: 9px;
    }

    .old-price {
        font-size: 9px;
    }

    .new-price {
        font-size: 14px;
    }

    .add-to-cart {
        padding: 8px 5px;
        font-size: 10px;
        gap: 3px;
        border-radius: 6px;
    }

    .add-to-cart i {
        display: none;
    }

    /* FOOTER MOBILE */
    .footer {
        padding: 0 0 82px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 15px;
    }

    .footer-section h3 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .payment-methods {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding: 20px 15px;
    }

    /* MOBILE BOTTOM NAV ACTIVE */
    .mobile-bottom-nav {
        display: block !important;
    }

    /* WhatsApp & Call Buttons */
    .contact-buttons {
        bottom: 74px;
        left: 14px;
    }

    .contact-btn {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    /* Scroll Top */
    .scroll-top {
        bottom: 74px;
        right: 14px;
        width: 42px;
        height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        row-gap: 12px;
    }
    
    .product-card {
        width: 100%;
    }
}








/* ============================================
   DESKTOP NAVBAR MENU (Siemens Style)
   style.css dosyasının SONUNA ekleyin
   ============================================ */
.desktop-navbar {
    background: var(--bauhaus-white);
    border-bottom: 2px solid var(--bauhaus-border);
    display: block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-item {
    position: relative;
}

.navbar-link {
    display: block;
    padding: 14px 20px;
    color: var(--bauhaus-dark-gray);
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.navbar-link:hover {
    color: var(--bauhaus-red);
    background: transparent;
    border-bottom-color: var(--bauhaus-red);
    text-decoration: none !important;
}

.navbar-item.has-dropdown > .navbar-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 10px;
}

/* Dropdown Container */
.navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bauhaus-white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
    min-width: 240px;
    border-top: 3px solid var(--bauhaus-red);
    border-radius: 0;
    border: 1px solid var(--bauhaus-border);
    border-top: 3px solid var(--bauhaus-red);
}

.navbar-item:hover .navbar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-dropdown-inner {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 1000px;
}

/* Dropdown Column */
.dropdown-column {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 250px;
}

.dropdown-column-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--bauhaus-black);
    padding: 10px 0;
    margin-bottom: 8px;
    text-decoration: none !important;
    border-bottom: 1px solid var(--bauhaus-border);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 12px;
}

.dropdown-column-title:hover {
    color: var(--bauhaus-red);
    text-decoration: none !important;
    border-bottom-color: var(--bauhaus-red);
}

/* Eğer dropdown-list boşsa veya yoksa, alt çizgiyi kaldır ve boşluğu azalt */
.dropdown-column:has(.dropdown-list:empty) .dropdown-column-title,
.dropdown-column:not(:has(.dropdown-list)) .dropdown-column-title {
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: none;
    font-weight: 600;
}

/* Dropdown List (3rd level) */
.dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 6px;
}

.dropdown-list li {
    margin: 0;
}

.dropdown-list a {
    display: block;
    padding: 6px 0;
    font-size: 12px;
    color: var(--bauhaus-dark-gray);
    text-decoration: none !important;
    transition: all 0.2s;
    position: relative;
    padding-left: 0;
    font-weight: 400;
}

.dropdown-list a::before {
    content: '›';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.2s;
    color: var(--bauhaus-red);
    font-weight: 700;
}

.dropdown-list a:hover {
    color: var(--bauhaus-red);
    padding-left: 12px;
    text-decoration: none !important;
}

.dropdown-list a:hover::before {
    opacity: 1;
}

/* Categories Section Fix */
.categories-section {
    background: white;
    padding-bottom: 20px;
}

/* Mobilde gizle */
@media (max-width: 768px) {
    .desktop-navbar {
        display: none !important;
    }
}

/* Navbar More Button - Sığmayan menüler için */
.navbar-more-btn {
    padding: 16px 18px;
    background: none;
    border: none;
    color: #5a6c7d;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    margin-left: auto;
}

.navbar-more-btn:hover {
    color: #435c8f;
    background: #fafbfc;
    border-bottom-color: #435c8f;
}

.navbar-more-btn i {
    font-size: 14px;
    margin-left: 4px;
    transition: transform 0.3s;
}

.navbar-more-btn.active i {
    transform: rotate(45deg);
}

/* Hidden navbar items - Sığmayan menüler */
.navbar-item.hidden-nav-item {
    display: none;
}

.navbar-item.hidden-nav-item.show {
    display: block;
}

/* More button dropdown */
.navbar-more-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    min-width: 200px;
    border-top: 3px solid #435c8f;
    border-radius: 0 0 8px 8px;
    display: none;
}

.navbar-more-btn.active ~ .navbar-more-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.navbar-more-dropdown .navbar-item {
    display: block;
    position: relative;
}

.navbar-more-dropdown .navbar-link {
    padding: 12px 20px;
    border-bottom: none;
    display: block;
}

.navbar-more-dropdown .navbar-link:hover {
    background: #fafbfc;
    color: #435c8f;
}

/* DAHA FAZLA dropdown içindeki alt menüler */
.navbar-more-dropdown .navbar-item.has-dropdown > .navbar-link::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    float: right;
    font-size: 12px;
}

.navbar-more-dropdown .navbar-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0;
}

.navbar-more-dropdown .navbar-item:hover .navbar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}



/* ============================================
   MOBİL MENÜ DÜZELTMELERİ
   style.css dosyasındaki mobil menü kısmını değiştir
   ============================================ */

.menu-list {
    border-top: none;
}

.menu-item {
    border-bottom: 1px solid #e8ecef;
}

.menu-item-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    text-decoration: none !important;
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-icon {
    display: none;
}

.menu-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

.menu-arrow {
    font-size: 15px;
    color: #5a6c7d;
    transition: transform 0.3s;
}

.menu-arrow.rotated {
    transform: rotate(90deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0;
}

.submenu.active {
    max-height: 1000px;
    padding-bottom: 14px;
}

.submenu-item {
    display: block;
    padding: 9px 0;
    color: #5a6c7d;
    text-decoration: none !important;
    font-size: 12px;
    transition: all 0.3s;
    font-weight: 500;
}

.submenu-item:hover {
    color: #435c8f;
    padding-left: 8px;
}/* ============================================
   MOBİL MENÜ DÜZELTMELERİ
   style.css dosyasındaki mobil menü kısmını değiştir
   ============================================ */

.menu-list {
    border-top: none;
}

.menu-item {
    border-bottom: 1px solid #e8ecef;
}

.menu-item-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-icon {
    display: none;
}

.menu-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

.menu-arrow {
    font-size: 15px;
    color: #5a6c7d;
    transition: transform 0.3s;
}

.menu-arrow.rotated {
    transform: rotate(90deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0;
}

.submenu.active {
    max-height: 1000px;
    padding-bottom: 14px;
}

.submenu-item {
    display: block;
    padding: 9px 0;
    color: #5a6c7d;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    font-weight: 500;
}

.submenu-item:hover {
    color: #435c8f;
    padding-left: 8px;
}






















/* ============================================
   YENİ TOP BAR TASARIMI
   style.css dosyasındaki .top-bar kısmını değiştir
   ============================================ */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
	border-bottom: 2px solid #e8ecef;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.top-link {
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    padding: 12px 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 11px;
}

.top-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.top-link:hover::before {
    width: 80%;
}

.top-link i {
    font-size: 13px;
    opacity: 0.9;
}

.top-link.highlight {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 10px 14px;
    margin: 2px 8px 2px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-link.highlight::before {
    display: none;
}

.top-link.highlight:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin: 4px 0;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 11px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cart-link i {
    font-size: 16px;
    animation: cartPulse 2s infinite;
}

@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cart-link .cart-badge {
    position: relative;
    top: auto;
    right: auto;
}

.cart-badge {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245, 87, 108, 0.4);
    animation: badgeBounce 1s infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Top bar responsive düzeltmeleri */
@media (max-width: 1200px) {
    .top-link {
        padding: 12px 12px;
        font-size: 10px;
        gap: 4px;
    }
    
    .top-link i {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .desktop-header .top-bar {
        display: none;
    }
}


/* ============================================
   ARAMA KUTUSU KÜÇÜLTME
   style.css dosyasındaki .search-box ve .search-input kısmını değiştir
   ============================================ */

.search-box {
    flex: 1;
    margin: 0 40px;
    position: relative;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 9px 100px 9px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 20px;
    font-size: 12px;
    outline: none;
    transition: all 0.3s;
    background: #f8f9fa;
    height: 38px;
}

.search-input:focus {
    border-color: #435c8f;
    background: white;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #435c8f;
    color: white;
    border: none;
    padding: 6px 20px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
    font-weight: 500;
    height: 30px;
}

.search-btn:hover {
    background: #5f4fd1;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
}

@media (max-width: 1200px) {
    .search-box {
        max-width: 500px;
        margin: 0 30px;
    }
    
    .search-input {
        padding: 8px 90px 8px 14px;
        font-size: 11px;
        height: 48px;
    }
    
    .search-btn {
        padding: 5px 18px;
        font-size: 11px;
        height: 28px;
    }
}

@media (max-width: 992px) {
    .search-box {
        max-width: 400px;
        margin: 0 20px;
    }
}




















/* ============================================
   CATEGORY SECTION - Otomatik Genişletme
   ============================================ */
.categories-section {
    padding: 15px 0 !important;
    background: #f8f9fa;
    margin-bottom: 0 !important;
}

.category-scroll-wrapper {
    position: relative;
    width: 100%;
    padding: 0 50px;
}

.category-scroll {
    display: flex !important;
    gap: 15px !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto;
    min-width: 140px !important;
    padding: 20px 15px !important;
    background: white !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

.category-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

.category-icon {
    margin-bottom: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid #f0f0f0 !important;
}

.category-name {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-align: center !important;
    line-height: 1.4 !important;
    word-break: break-word;
}

.scroll-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: white !important;
    border: 1px solid #ddd !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.scroll-btn:hover {
    background: #f0f0f0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.scroll-btn i {
    font-size: 16px;
    color: #333;
}

.scroll-left {
    left: 0 !important;
}

.scroll-right {
    right: 0 !important;
}

/* Banner Section - Üst boşluğu kaldır */
.banner-section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ============================================
   LİNK VE BAŞLIK DÜZELTMELERİ
   ============================================ */

/* Global text-decoration iptal */
* {
    text-decoration: none !important;
}

a,
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}

/* Ürün başlıklarındaki mavi rengi kaldır - siyah yap */
.product-title,
.product-title a,
.product-card h3,
.product-card h3 a,
.product-info-card h3,
.product-info-card h3 a {
    color: #333 !important;
    text-decoration: none !important;
}

.product-title a:hover,
.product-card h3 a:hover,
.product-info-card h3 a:hover {
    color: #666 !important;
    text-decoration: none !important;
}

/* Button linkleri */
.btn,
.button,
button a {
    text-decoration: none !important;
}

/* Menü linkleri */
.navbar-item a,
.menu-item a,
.mobile-menu a {
    text-decoration: none !important;
}

/* Footer ve diğer linkler */
footer a,
.breadcrumb a,
.cart-link,
.cart-item a {
    text-decoration: none !important;
}

/* ============================================
   HABERLER BÖLÜMÜ - 3'LÜ GRİD
   ============================================ */

/* Haberler wrapper'ını normal container yap */
.product-section:has(#haberler) .product-slider-wrapper {
    position: relative !important;
    padding: 0 !important;
}

/* Scroll butonlarını gizle */
.product-section:has(#haberler) .product-scroll-btn {
    display: none !important;
}

/* Haberler slider'ını grid yap - 4'lü */
#haberler.product-slider {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Haber kartlarının genişliğini düzelt */
#haberler .product-card {
    width: 100% !important;
    min-width: auto !important;
    max-width: none !important;
    flex: none !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s ease !important;
}

#haberler .product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

/* Haber resimlerini düzelt */
#haberler .product-image {
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
    border-radius: 10px !important;
}

#haberler .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Haber başlıklarını düzelt */
#haberler .product-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 12px 0 8px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 44px !important;
}

/* Haber açıklamasını düzelt */
#haberler .product-info-card p {
    font-size: 13px !important;
    color: #666 !important;
    margin: 10px 0 !important;
    line-height: 1.6 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 62px !important;
}

/* Tarih bilgisi */
#haberler .product-rating {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 13px !important;
    color: #999 !important;
    margin: 8px 0 !important;
}

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */

/* Desktop - Büyük Ekranlar (1200px+) */
@media (min-width: 1200px) {
    #haberler.product-slider {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Tablet - Orta Ekranlar (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .category-item {
        min-width: 120px !important;
        padding: 15px 12px !important;
    }
    
    .category-icon img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .category-name {
        font-size: 13px !important;
    }
    
    #haberler.product-slider {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
    
    #haberler .product-image {
        height: 200px !important;
    }
}

/* Tablet - Küçük Ekranlar (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .category-scroll-wrapper {
        padding: 0 40px;
    }
    
    .category-item {
        min-width: 100px !important;
        padding: 12px 10px !important;
    }
    
    .category-icon img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .category-name {
        font-size: 12px !important;
    }
    
    .scroll-btn {
        width: 35px !important;
        height: 35px !important;
    }
    
    .scroll-btn i {
        font-size: 14px;
    }
    
    #haberler.product-slider {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    #haberler .product-image {
        height: 180px !important;
    }
}

/* Mobile - Orta Ekranlar (481px - 767px) */
@media (max-width: 767px) {
    #haberler.product-slider {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    #haberler .product-image {
        height: 150px !important;
    }
    
    #haberler .product-title {
        font-size: 14px !important;
        min-height: 40px !important;
    }
    
    #haberler .product-info-card p {
        font-size: 12px !important;
        -webkit-line-clamp: 2 !important;
        min-height: 40px !important;
    }
}

/* Mobile - Küçük Ekranlar (max 480px) */
@media (max-width: 480px) {
    .categories-section {
        padding: 10px 0 !important;
    }
    
    .category-scroll-wrapper {
        padding: 0 35px;
    }
    
    .category-item {
        min-width: 90px !important;
        padding: 10px 8px !important;
    }
    
    .category-icon img {
        width: 55px !important;
        height: 55px !important;
    }
    
    .category-name {
        font-size: 11px !important;
    }
    
    .scroll-btn {
        width: 30px !important;
        height: 30px !important;
    }
    
    .scroll-btn i {
        font-size: 12px;
    }
    
    #haberler.product-slider {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    #haberler .product-image {
        height: 200px !important;
    }
}













/* Ürün Görünümü Container */
.product-view {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.product-essential {
    padding: 50px 40px;
}

/* Başlıklar */
h4 strong {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

/* Açıklama Metinleri */
.desc {
    font-size: 14px;
    color: #666;
    margin: 20px 0;
}

/* Çizgi Ayracı */
.line-dashed2 {
    height: 1px;
    background-color: #e0e0e0;
    margin: 25px 0;
}

/* Liste İkonları */
p i.fa {
    color: #27ae60;
    font-size: 16px;
}

/* Form Düzeni */
.form-horizontal {
    width: 100%;
}

.row[style*="padding"] {
    padding: 0 10px 15px 10px !important;
}

/* Form Kontrolleri */
.form-control {
    height: 44px;
    padding: 10px 16px;
    font-size: 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-control:focus {
    border-color: #3498db;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #999;
    font-size: 13px;
}

/* Select Dropdown */
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

/* Submit Butonu - Bauhaus Style */
.btn-primary {
    background-color: var(--bauhaus-red);
    border: none;
    color: var(--bauhaus-white);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: none;
    font-family: 'Archivo', sans-serif;
}

.btn-primary:hover {
    background-color: var(--bauhaus-dark-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 28, 35, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(227, 28, 35, 0.2);
}

/* Bilgi Kutusu (Sol Taraf) */
.col-md-5 {
    padding-right: 40px;
    border-right: 1px solid #e8e8e8;
}

.col-md-5 p {
    font-size: 14px;
    color: #555;
    margin: 12px 0;
    padding-left: 5px;
}

/* Form Alanı (Sağ Taraf) */
.col-md-7 {
    padding-left: 40px;
}

/* Uyarı Mesajları */
.uyari2 {
    font-size: 13px;
    color: #e74c3c;
    margin-top: 5px;
}

/* Mesaj Sayfaları */
table#table1 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

table#table1 td {
    padding: 60px 40px;
}

.alert-heading {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0;
}

table#table1 .fa {
    margin-bottom: 20px;
}

table#table1 .btn-primary {
    margin-top: 20px;
}

/* Başarılı/Başarısız Mesaj Sayfaları */
center {
    padding: 80px 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin: 40px auto;
    max-width: 600px;
}

center .fa {
    margin-bottom: 25px;
}

center h4 {
    margin: 20px 0 15px 0;
}

#dl {
    margin-top: 15px;
    font-size: 18px;
    color: #3498db;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .product-essential {
        padding: 30px 20px;
    }
    
    .col-md-5 {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding-right: 15px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .col-md-7 {
        padding-left: 15px;
    }
    
    h4 strong {
        font-size: 20px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }
    
    center {
        padding: 50px 20px;
        margin: 20px;
    }
}

/* Input Focus Animasyonu */
@keyframes inputFocus {
    0% {
        border-color: #e8e8e8;
    }
    100% {
        border-color: #3498db;
    }
}

/* Form Grubu Spacing */
.form-group {
    margin-bottom: 0;
}

.form-group.wide {
    width: 100%;
}

/* Link Stilleri */
a.btn {
    text-decoration: none;
    display: inline-block;
}

a.btn:hover {
    text-decoration: none;
}

/* Boşluk Ayarları */
.col-md-12 {
    margin-bottom: 10px;
}


























/* Ürün Görünümü Container */
.product-view {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.product-essential {
    padding: 50px 40px;
}

/* Başlıklar */
h4 strong {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

h3 strong {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

h5 {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

/* Açıklama Metinleri */
.desc {
    font-size: 14px;
    color: #666;
    margin: 20px 0;
}

/* Çizgi Ayracı */
.line-dashed2 {
    height: 1px;
    background-color: #e0e0e0;
    margin: 25px 0;
}

/* Liste İkonları */
p i.fa {
    color: #27ae60;
    font-size: 16px;
}

/* Form Düzeni */
.form-horizontal {
    width: 100%;
}

.row[style*="padding"] {
    padding: 0 10px 15px 10px !important;
}

.altbottom {
    margin-bottom: 20px;
}

/* Form Kontrolleri */
.form-control {
    height: 44px;
    padding: 10px 16px;
    font-size: 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-control:focus {
    border-color: #3498db;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #999;
    font-size: 13px;
}

textarea.form-control {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

/* Select Dropdown */
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

/* Submit Butonu */
.btn-primary, .btn-primary.bttn {
    background-color: #3498db;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 45px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover, .btn-primary.bttn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    text-decoration: none;
    color: #ffffff;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-danger {
    background-color: #e74c3c;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 45px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.btn-info {
    background-color: #3498db;
    border: none;
    color: #ffffff;
}

.btn-secondary {
    background-color: #95a5a6;
    border: none;
    color: #ffffff;
}

/* Bilgi Kutusu (Sol Taraf) */
.col-md-5 {
    padding-right: 40px;
    border-right: 1px solid #e8e8e8;
}

.col-md-5 p {
    font-size: 14px;
    color: #555;
    margin: 12px 0;
    padding-left: 5px;
}

/* Form Alanı (Sağ Taraf) */
.col-md-7 {
    padding-left: 40px;
}

/* Uyarı Mesajları */
.uyari2 {
    font-size: 13px;
    color: #e74c3c;
    margin-top: 5px;
}

/* Mesaj Sayfaları */
table#table1 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

table#table1 td {
    padding: 60px 40px;
}

.alert-heading {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0;
}

table#table1 .fa {
    margin-bottom: 20px;
}

table#table1 .btn-primary {
    margin-top: 20px;
}

/* Başarılı/Başarısız Mesaj Sayfaları */
center {
    padding: 80px 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin: 40px auto;
    max-width: 600px;
}

center .fa {
    margin-bottom: 25px;
}

center h4 {
    margin: 20px 0 15px 0;
}

center h1 {
    font-size: 28px;
    color: #2c3e50;
    margin: 20px 0;
}

center h3 {
    font-size: 20px;
    margin: 15px 0;
}

center h5 {
    font-size: 15px;
    color: #7f8c8d;
}

#dl {
    margin-top: 15px;
    font-size: 18px;
    color: #3498db;
}

/* Kargo Kutuları */
.kargokutu {
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.kargokutu:hover {
    border-color: #3498db;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
}

.kargokutu label {
    cursor: pointer;
    margin-bottom: 0;
}

.kargoresim {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.kargoresim img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
}

/* Sepet Tabloları */
.cart-table-container table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table-container th {
    background-color: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: #2c3e50;
}

.cart-table-container td {
    padding: 15px 12px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
}

.cart-table-wrap {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
}

.cart-summary {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    padding: 0;
    position: sticky;
    top: 20px;
}

.cart-summary .panel-heading {
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
}

.cart-summary .panel-heading h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.table-totals {
    width: 100%;
    margin: 0;
}

.table-totals td {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid #e8e8e8;
}

.table-totals tfoot td {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    border-bottom: none;
    padding-top: 15px;
}

/* Tabs */
.nav-tabs {
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 20px;
}

.nav-tabs .nav-item {
    margin-bottom: -2px;
}

.nav-tabs .nav-link {
    border: none;
    background: none;
    color: #7f8c8d;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #3498db;
    background-color: #f8f9fa;
}

.nav-tabs .nav-link.active {
    color: #3498db;
    border-bottom: 2px solid #3498db;
}

.tab-content {
    padding: 20px 0;
}

/* Profil Sidebar */
.sidebar-heading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 15px;
}

.nav {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 10px 0;
}

.nav-link {
    font-weight: 500;
    color: #555;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover {
    color: #3498db;
    background-color: #f8f9fa;
    border-left-color: #3498db;
}

.nav-link .fa {
    margin-right: 10px;
    color: #7f8c8d;
    width: 20px;
    text-align: center;
}

.nav-link:hover .fa {
    color: #3498db;
}

/* Profil İçerik */
.profil-icerik {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.siparis-ozet {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
}

/* Adres Kartları */
.kenarlik {
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.kenarlik:hover {
    border-color: #3498db;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.1);
}

/* Referans Kartları */
.referans {
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.referansimg {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.page-item {
    margin: 0 3px;
}

.page-link {
    padding: 8px 15px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    color: #555;
    font-size: 13px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #3498db;
    color: #ffffff;
    border-color: #3498db;
}

.page-item.active .page-link {
    background-color: #3498db;
    border-color: #3498db;
    color: #ffffff;
}

/* Modal */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid #e8e8e8;
    padding: 15px 25px;
}

/* Hesap Bilgileri */
.hesapno {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 15px;
}

.hesapno .banka {
    font-size: 16px;
    color: #2c3e50;
}

.hesapno .isim,
.hesapno .iban {
    font-size: 14px;
    color: #555;
}

/* Tablolar */
.alttableler,
.alttableler2 {
    width: 100%;
    border-collapse: collapse;
}

.alttableler tr,
.alttableler2 tr {
    border-bottom: 1px solid #e8e8e8;
}

.alttableler td,
.alttableler2 td {
    padding: 12px 8px;
    font-size: 14px;
}

.alttableler th {
    background-color: #f8f9fa;
    padding: 12px 8px;
    font-weight: 600;
    font-size: 13px;
}

/* Ürün Detay Sayfası - Özel Stiller */
.product-single-container {
    background: #ffffff;
    padding: 0;
    margin-bottom: 30px;
    box-shadow: none;
    border-radius: 0;
}

.product-single-container .row {
    margin: 0;
}

/* Sol Taraf - Galeri */
.product-single-gallery {
    position: relative;
    padding: 30px;
}

.product-single-gallery .product-slider-container {
    position: relative;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
}

.product-single-gallery .product-item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #ffffff;
}

.product-single-gallery .product-single-image {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* Thumbnail'ler - Yatay */
.product-single-gallery .prod-thumbnail {
    display: flex !important;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
}

.product-single-gallery .owl-dot {
    cursor: pointer;
    border: 2px solid #e8e8e8;
    border-radius: 0;
    padding: 3px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 100px !important;
    height: 100px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.product-single-gallery .owl-dot:hover,
.product-single-gallery .owl-dot.active {
    border-color: #2c3e50;
}

.product-single-gallery .owl-dot img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* Sağ Taraf - Detaylar */
.product-single-details {
    padding: 30px;
    background: #ffffff;
}

.product-single-details .product-title,
.product-single-details h1.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-single-details .ratings-container {
    margin: 15px 0;
    font-size: 14px;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-single-details .urundetayhit {
    font-weight: 700;
    color: #2c3e50;
    padding: 0;
}

/* Ürün Kodu */
.product-single-details .col-md-12 {
    font-size: 14px;
    color: #7f8c8d;
    margin: 15px 0;
}

/* Yıldız Rating */
.product-single-details .rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
}

.product-single-details .star-container {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.product-single-details .star,
.product-single-details .star-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    line-height: 20px;
}

.product-single-details .star {
    color: #ddd;
}

.product-single-details .star-fill {
    color: #f39c12;
    overflow: hidden;
}

/* Kısa Ayırıcı - Kaldır */
.product-single-details .short-divider {
    display: none;
}

/* Fiyat Kutusu */
.product-single-details .price-box {
    background: transparent;
    padding: 0;
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.product-single-details .price-box .old-price {
    font-size: 18px;
    color: #95a5a6;
    text-decoration: line-through;
    font-weight: 400;
}

.product-single-details .price-box .new-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.product-single-details .price-box br {
    display: none;
}

/* KDV Durumu */
.product-single-details .price-box + br + br {
    display: block;
    content: "";
    margin: 5px 0;
}

/* Ürün Açıklama */
.product-single-details .product-desc {
    margin: 20px 0;
    padding: 0;
    background: transparent;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* Bilgi Listesi */
.product-single-details .single-info-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.product-single-details .single-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
}

.product-single-details .single-info-list li:first-child {
    border-top: 1px solid #e8e8e8;
}

/* Seçenek Filtreler */
.product-single-details .product-filters-container-wrapper {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.product-single-details .product-filters-container {
    flex: 1;
    min-width: 200px;
}

.product-single-details .product-single-filter label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-single-details .product-single-filter select.form-control {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 0;
}

/* Ürün Aksiyon Butonları */
.product-single-details .product-action {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.product-single-details .product-single-qty {
    flex: 0 0 120px;
}

.product-single-details .product-single-qty input {
    width: 100%;
    height: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
}

.product-single-details .btn-dark {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 25px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    height: 50px;
}

.product-single-details .btn-dark:hover {
    background-color: #1a252f;
    color: #ffffff;
}

.product-single-details .btn-icon-wish {
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c3e50;
}

/* Tabs Bölümü */
.product-single-tabs {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

.product-single-tabs .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.product-single-tabs .nav-tabs {
    border-bottom: 2px solid #ddd;
    margin-bottom: 30px;
}

.product-single-tabs .nav-tabs .nav-link {
    border: none;
    background: none;
    color: #7f8c8d;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
}

.product-single-tabs .nav-tabs .nav-link.active {
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    background: none;
}

.product-single-tabs .tab-content {
    background: #ffffff;
    padding: 30px;
}

/* Ürün Özellikleri Başlık */
.product-single-tabs h5 {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

/* Benzer Ürünler Bölümü */
.products-section {
    margin: 60px 0;
    padding: 0;
}

.products-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    padding-bottom: 0;
    border-bottom: none;
    text-align: left;
    text-transform: uppercase;
}

/* Owl Carousel - Benzer Ürünler */
.products-section .owl-carousel {
    display: block !important;
}

.products-section .owl-stage {
    display: flex !important;
}

.products-section .owl-item {
    float: none !important;
    display: flex !important;
}

.products-section .owl-carousel .product-default {
    border: 1px solid #e8e8e8;
    border-radius: 0;
    padding: 0;
    margin: 10px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column;
}

.products-section .owl-carousel .product-default:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: #2c3e50;
}

.products-section .owl-carousel .product-default figure {
    margin: 0;
    padding: 0;
    position: relative;
    background: #ffffff;
}

.products-section .owl-carousel .product-default figure > a {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.products-section .owl-carousel .product-default figure img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    height: 80% !important;
    max-width: 80% !important;
    object-fit: contain !important;
}

.products-section .owl-carousel .product-default .label-group {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.products-section .owl-carousel .product-default .product-label {
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.products-section .owl-carousel .product-default .product-details {
    padding: 20px;
    text-align: center;
}

.products-section .owl-carousel .product-default .product-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.4;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-section .owl-carousel .product-default .price-box {
    margin: 15px 0;
}

.products-section .owl-carousel .product-default .old-price {
    color: #95a5a6 !important;
    font-size: 14px !important;
    text-decoration: line-through !important;
    display: block;
    margin-bottom: 5px;
}

.products-section .owl-carousel .product-default .product-price {
    color: #2c3e50 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    display: block;
}

.products-section .owl-carousel .product-default .product-action {
    margin-top: 15px;
    border-top: none;
    padding-top: 0;
}

.products-section .owl-carousel .product-default .btn-icon {
    background-color: #e8e8e8;
    color: #2c3e50;
    padding: 12px 20px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
}

.products-section .owl-carousel .product-default .btn-icon:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: transparent;
    padding: 15px 0;
    margin-bottom: 20px;
}

.breadcrumb {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 14px;
    color: #7f8c8d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: #bdc3c7;
}

.breadcrumb-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #3498db;
}

.breadcrumb-item.active a {
    color: #3498db;
    font-weight: 600;
}

/* Ürün Detay Container */
.product-single-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Ürün Galeri */
.product-single-gallery {
    position: relative;
}

.product-slider-container {
    position: relative;
    margin-bottom: 20px;
}

.product-single-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.prod-thumbnail {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.owl-dot {
    cursor: pointer;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    padding: 5px;
    transition: all 0.3s ease;
}

.owl-dot:hover,
.owl-dot.active {
    border-color: #3498db;
}

.owl-dot img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Ürün Detayları */
.product-single-details {
    padding-left: 30px;
}

.product-title {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ratings-container {
    margin: 15px 0;
    font-size: 14px;
    color: #7f8c8d;
}

.urundetayhit {
    font-weight: 600;
    color: #3498db;
}

/* Yıldız Rating */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 15px 0;
}

.star-container {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.star,
.star-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 24px;
    line-height: 24px;
}

.star {
    color: #e8e8e8;
}

.star-fill {
    color: #f39c12;
    overflow: hidden;
}

/* Kısa Ayırıcı */
.short-divider {
    width: 80px;
    height: 2px;
    background: #3498db;
    border: none;
    margin: 20px 0;
}

/* Fiyat Kutusu - Ürün Detay */
.product-single-details .price-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.product-single-details .new-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    display: block;
}

.product-single-details .old-price {
    font-size: 20px;
    color: #95a5a6;
    text-decoration: line-through;
    display: block;
    margin-bottom: 10px;
}

/* Ürün Açıklama */
.product-desc {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Bilgi Listesi */
.single-info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.single-info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
}

.single-info-list li:last-child {
    border-bottom: none;
}

.single-info-list strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Renk Seçimi */
.renklerim {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

/* Seçenek Filtreler */
.product-filters-container-wrapper {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.product-filters-container {
    flex: 1;
    min-width: 150px;
}

.product-single-filter label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.product-single-filter select {
    width: 100%;
}

/* Ürün Aksiyon */
.product-action {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.product-single-qty {
    flex: 0 0 120px;
}

.product-single-qty input {
    width: 100%;
    height: 44px;
    text-align: center;
}

.btn-dark {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.btn-icon-wish {
    padding: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tabs */
.product-single-tabs {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-tabs {
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 25px;
}

.nav-tabs .nav-item {
    margin-bottom: -2px;
}

.nav-tabs .nav-link {
    border: none;
    background: none;
    color: #7f8c8d;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.nav-tabs .nav-link:hover {
    color: #3498db;
    background-color: #f8f9fa;
}

.nav-tabs .nav-link.active {
    color: #3498db;
    border-bottom: 2px solid #3498db;
    background: none;
}

.tab-content {
    padding: 20px 0;
}

/* Ürün Özellikleri Bölümü */
.product-desc-content h5 {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Yorum Formu */
.product-tags-content .form-group {
    margin-bottom: 20px;
}

.product-tags-content label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.product-tags-content .required {
    color: #e74c3c;
}

/* Taksit Tablosu */
.table-striped {
    width: 100%;
    border-collapse: collapse;
}

.table-striped tr {
    border-bottom: 1px solid #e8e8e8;
}

.table-striped tr:nth-child(even) {
    background-color: #f8f9fa;
}

.table-striped td {
    padding: 12px 8px;
    font-size: 14px;
}

.table-striped strong {
    font-weight: 600;
    color: #2c3e50;
}

/* Benzer Ürünler Slider */
.products-section {
    margin: 40px 0;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

.products-slider .product-default {
    margin: 0 10px;
}

/* Sidebar Kategoriler */
.sidebar-shop {
    padding-left: 20px;
}

.sidebar-wrapper {
    position: sticky;
    top: 20px;
}

.widget {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.widget-title a {
    color: #2c3e50;
    text-decoration: none;
}

.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list li {
    margin-bottom: 8px;
}

.cat-list a {
    display: block;
    padding: 8px 12px;
    color: #555;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cat-list a:hover {
    background-color: #f8f9fa;
    color: #3498db;
    padding-left: 18px;
}

/* Fiyat Filtresi */
.filter-price-action {
    padding: 10px 0;
}

.filter-price-text {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-price-text > div {
    flex: 1;
}

.filter-price-text label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.filter-price-text input {
    width: 100%;
    height: 40px;
}

/* Toolbox */
.toolbox {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.toolbox-left,
.toolbox-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toolbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbox-item label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin: 0;
}

.sidebar-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #3498db;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.sidebar-toggle svg {
    width: 20px;
    height: 20px;
}

/* Pagination - Toolbox */
.toolbox-pagination {
    background: transparent;
    justify-content: center;
    margin-top: 40px;
}

.toolbox-pagination .pagination {
    margin: 0;
}

/* Arama Sayfası */
.kaybet {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.kaybet .text-center {
    font-size: 16px;
    font-weight: 600;
}

/* Sidebar Overlay (Mobile) */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-sidebar {
    transition: transform 0.3s ease;
}

/* Kategori Sidebar */
.kategoriler-sidebar {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.kategoriler-sidebar h3,
.kategoriler-sidebar .kategori-baslik {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kategoriler-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kategoriler-sidebar li {
    margin-bottom: 8px;
}

.kategoriler-sidebar a {
    display: block;
    padding: 10px 15px;
    color: #555;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.kategoriler-sidebar a:hover {
    background-color: #f8f9fa;
    color: #3498db;
    border-left-color: #3498db;
    padding-left: 20px;
}

/* Fiyat Aralığı Filtresi */
.fiyat-filter {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.fiyat-filter h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.fiyat-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.fiyat-inputs input {
    flex: 1;
    height: 40px;
    padding: 8px 12px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 14px;
}

.fiyat-inputs input:focus {
    border-color: #3498db;
    outline: none;
}

/* Seçenekler Dropdown */
.secenekler-dropdown {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #555;
    width: 100%;
    margin-bottom: 20px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}

.secenekler-dropdown:focus {
    border-color: #3498db;
    outline: none;
}

/* Ürün Listesi Sayfası - Özel Stiller (Sadece liste sayfasında çalışır) */
.main-content .col-6.col-sm-4 {
    margin-bottom: 25px;
}

/* Ürün Grid Düzeni - Sadece liste sayfası */
.main-content .row > .col-6,
.main-content .row > .col-sm-4 {
    margin-bottom: 25px;
}

/* Ürün Kartları - Sadece liste sayfasında */
.main-content .product-default,
.col-lg-9.main-content .product-default {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 0;
    transition: all 0.3s ease;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main-content .product-default:hover,
.col-lg-9.main-content .product-default:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
    transform: translateY(-5px);
}

.main-content .product-default figure,
.col-lg-9.main-content .product-default figure {
    margin: 0;
    padding: 0;
}

.main-content .product-default .product-image,
.col-lg-9.main-content .product-default .product-image {
    display: block;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    padding-top: 70%;
}

.main-content .product-default .product-image img,
.col-lg-9.main-content .product-default .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-content .product-default .product-image img:first-child {
    z-index: 2;
}

.main-content .product-default .product-image img:last-child {
    z-index: 1;
    opacity: 0;
}

.main-content .product-default:hover .product-image img:first-child {
    opacity: 0;
}

.main-content .product-default:hover .product-image img:last-child {
    opacity: 1;
    transform: scale(1.05);
}

.main-content .product-default .product-image center,
.col-lg-9.main-content .product-default .product-image center {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    z-index: 3;
    margin: 0;
}

.main-content .product-default .label-group,
.col-lg-9.main-content .product-default .label-group {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.main-content .product-default .product-label,
.col-lg-9.main-content .product-default .product-label {
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.main-content .product-default .label-sale,
.col-lg-9.main-content .product-default .label-sale {
    background-color: #e74c3c;
    color: #ffffff;
}

.main-content .product-default .label-hot,
.col-lg-9.main-content .product-default .label-hot {
    background-color: #e67e22;
    color: #ffffff;
}

/* Ürün Detayları - Sadece liste sayfası */
.main-content .product-default .product-details,
.col-lg-9.main-content .product-default .product-details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.main-content .product-default .product-title,
.main-content .product-default h3.product-title,
.col-lg-9.main-content .product-default .product-title {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 6px 0;
    line-height: 1.3;
    min-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-content .product-default .product-title a,
.col-lg-9.main-content .product-default .product-title a {
    color: #2c3e50;
    text-decoration: none;
}

.main-content .product-default .product-title a:hover,
.col-lg-9.main-content .product-default .product-title a:hover {
    color: #3498db;
}

.main-content .product-default .ratings-container,
.col-lg-9.main-content .product-default .ratings-container {
    margin: 0 0 6px 0;
}

.main-content .product-default .product-ratings,
.col-lg-9.main-content .product-default .product-ratings {
    display: inline-block;
    position: relative;
}

.main-content .product-default .ratings,
.col-lg-9.main-content .product-default .ratings {
    color: #f39c12;
    font-size: 12px;
}

/* Ürün Fiyat Kutusu - Sadece liste sayfası */
.main-content .product-default .price-box,
.col-lg-9.main-content .product-default .price-box {
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.main-content .product-default .old-price,
.main-content .product-default .price-box .old-price,
.main-content .product-default del.old-price,
.main-content .product-default .price-box del,
.col-lg-9.main-content .product-default .old-price {
    color: #95a5a6 !important;
    font-size: 12px !important;
    text-decoration: line-through !important;
    line-height: 1.1;
    display: block;
    margin-bottom: 2px;
}

.main-content .product-default .product-price,
.main-content .product-default .price-box .product-price,
.main-content .product-default span.product-price,
.main-content .product-default .price-box span,
.col-lg-9.main-content .product-default .product-price {
    color: #27ae60 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.1;
    display: block;
}

/* Ürün Aksiyonları - Sadece liste sayfası */
.main-content .product-default .product-action,
.col-lg-9.main-content .product-default .product-action {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-content .product-default .btn-icon-wish,
.main-content .product-default a.btn-icon-wish,
.main-content .product-default .product-action .btn-icon-wish,
.col-lg-9.main-content .product-default .btn-icon-wish {
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8e8e8 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #e74c3c !important;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.main-content .product-default .btn-icon-wish i,
.main-content .product-default .btn-icon-wish .icon-heart,
.main-content .product-default a.btn-icon-wish i,
.col-lg-9.main-content .product-default .btn-icon-wish i {
    font-size: 18px !important;
    line-height: 1;
    display: block;
    color: #e74c3c !important;
}

.main-content .product-default .btn-icon-wish:hover,
.main-content .product-default a.btn-icon-wish:hover,
.col-lg-9.main-content .product-default .btn-icon-wish:hover {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
    transform: scale(1.05);
}

.main-content .product-default .btn-icon-wish:hover i,
.main-content .product-default .btn-icon-wish:hover .icon-heart,
.col-lg-9.main-content .product-default .btn-icon-wish:hover i {
    color: #ffffff !important;
}

.main-content .product-default .btn-icon,
.main-content .product-default .btn-add-cart,
.col-lg-9.main-content .product-default .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 10px 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 38px;
}

.main-content .product-default .btn-icon:hover,
.main-content .product-default .btn-add-cart:hover,
.col-lg-9.main-content .product-default .btn-icon:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    color: #ffffff;
}

.main-content .product-default .btn-icon i,
.main-content .product-default .btn-icon .fa,
.col-lg-9.main-content .product-default .btn-icon i {
    font-size: 13px;
}

.main-content .product-default .btn-icon span,
.col-lg-9.main-content .product-default .btn-icon span {
    font-size: 12px;
}

/* Ürün Kodu Stili - Sadece liste sayfası */
.main-content .product-default .product-code,
.col-lg-9.main-content .product-default .product-code {
    font-size: 11px;
    color: #7f8c8d;
    margin: 0;
}

/* Price Box */
.price-box {
    margin: 10px 0;
}

.old-price {
    color: #95a5a6;
    font-size: 13px;
    text-decoration: line-through;
}

.product-price {
    color: #27ae60;
    font-size: 16px;
    font-weight: 600;
}

/* Form Group */
.form-group {
    margin-bottom: 0;
}

.form-group.wide {
    width: 100%;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

/* Responsive - Ürün Detay ve Liste */
@media (max-width: 1200px) {
    .urunler-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .product-single-container {
        padding: 30px 20px;
    }
}

@media (max-width: 991px) {
    .col-md-5 {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding-right: 15px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .col-md-7 {
        padding-left: 15px;
    }
    
    .urunler-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .kategoriler-sidebar {
        margin-bottom: 30px;
    }
    
    .product-single-details {
        padding-left: 15px;
        margin-top: 30px;
    }
    
    .sidebar-toggle {
        display: flex;
    }
    
    .sidebar-shop {
        position: fixed;
        left: -100%;
        top: 0;
        width: 300px;
        height: 100%;
        background: #ffffff;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
        transition: left 0.3s ease;
    }
    
    .sidebar-shop.active {
        left: 0;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .product-essential {
        padding: 30px 20px;
    }
    
    h4 strong {
        font-size: 20px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }
    
    center {
        padding: 50px 20px;
        margin: 20px;
    }
    
    .cart-summary {
        position: static;
        margin-top: 20px;
    }
    
    .urunler-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-title {
        font-size: 13px;
        min-height: 35px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .product-single-details .product-title {
        font-size: 22px;
    }
    
    .product-single-details .new-price {
        font-size: 26px;
    }
    
    .product-action {
        flex-direction: column;
    }
    
    .product-action a,
    .product-action button {
        width: 100%;
    }
    
    .product-filters-container-wrapper {
        flex-direction: column;
    }
    
    .toolbox {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toolbox-left,
    .toolbox-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .breadcrumb {
        font-size: 12px;
        padding: 10px 15px;
    }
    
    .product-single-tabs {
        padding: 20px 15px;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .urunler-grid {
        grid-template-columns: 1fr;
    }
    
    .fiyat-inputs {
        flex-direction: column;
    }
    
    .product-single-container {
        padding: 20px 15px;
    }
    
    .prod-thumbnail {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .owl-dot {
        min-width: 80px;
    }
    
    .filter-price-text {
        flex-direction: column;
    }
    
    .sidebar-shop {
        width: 280px;
    }
}

/* Input Focus Animasyonu */
@keyframes inputFocus {
    0% {
        border-color: #e8e8e8;
    }
    100% {
        border-color: #3498db;
    }
}

/* Link Stilleri */
a.btn {
    text-decoration: none;
    display: inline-block;
}

a.btn:hover {
    text-decoration: none;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Boşluk Ayarları */
.col-md-12 {
    margin-bottom: 10px;
}

/* Radio Button Stilleri */
input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3498db;
}

/* Checkbox Stilleri */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3498db;
}

/* Required Star */
.required {
    color: #e74c3c;
    margin-left: 3px;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-primary {
    background-color: #d4e7f7;
    border: 1px solid #3498db;
    color: #2c3e50;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #17a2b8;
    color: #0c5460;
}

/* Card Styles */
.card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #ffffff;
}

.card-body {
    padding: 20px;
}

/* HR Styles */
hr {
    border: 0;
    height: 1px;
    background-color: #e8e8e8;
    margin: 20px 0;
}

/* Text Utilities */
.text-primary {
    color: #3498db !important;
}

.text-success {
    color: #27ae60 !important;
}

.text-danger {
    color: #e74c3c !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* ============================================
   EKRAN UYUMLU GENIŞLIK AYARLARI
   Tüm sayfaların desktop monitörlerde sağdan ve soldan boşluk bırakması için
   ============================================ */

/* Sayfa wrapper'ı için maksimum genişlik kontrolü */
.page-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Row genişliği kontrolü */
.row {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop için container sınıflarının üzerine yazma - Bootstrap override */
@media (min-width: 992px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: calc(100% - 40px) !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: calc(100% - 60px) !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (min-width: 1920px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: calc(100% - 80px) !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/* Çok geniş ekranlar için maksimum içerik genişliği */
@media (min-width: 2560px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: calc(100% - 120px) !important;
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
}

/* Header ve navbar için genişlik kontrolü */
@media (min-width: 992px) {
    .desktop-header .container,
    .desktop-navbar .container {
        max-width: calc(100% - 40px) !important;
    }
}

@media (min-width: 1400px) {
    .desktop-header .container,
    .desktop-navbar .container {
        max-width: calc(100% - 60px) !important;
    }
}

@media (min-width: 1920px) {
    .desktop-header .container,
    .desktop-navbar .container {
        max-width: calc(100% - 80px) !important;
    }
}

/* Footer için genişlik kontrolü */
@media (min-width: 992px) {
    .footer .container {
        max-width: calc(100% - 40px) !important;
    }
}

@media (min-width: 1400px) {
    .footer .container {
        max-width: calc(100% - 60px) !important;
    }
}

@media (min-width: 1920px) {
    .footer .container {
        max-width: calc(100% - 80px) !important;
    }
}

/* Banner ve product section için genişlik kontrolü */
@media (min-width: 992px) {
    .banner-section .container,
    .product-section .container,
    .categories-section .container {
        max-width: calc(100% - 40px) !important;
    }
}

@media (min-width: 1400px) {
    .banner-section .container,
    .product-section .container,
    .categories-section .container {
        max-width: calc(100% - 60px) !important;
    }
}

@media (min-width: 1920px) {
    .banner-section .container,
    .product-section .container,
    .categories-section .container {
        max-width: calc(100% - 80px) !important;
    }
}

/* Ürün detay sayfası için geniş container */
.pdp-wrapper {
    width: 100%;
    margin: 0 auto;
}

.pdp-container-full {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop için pdp container genişliği */
@media (min-width: 992px) {
    .pdp-container-full,
    .product-single-tabs .container {
        max-width: calc(100% - 40px) !important;
        padding: 0 20px !important;
    }
}

@media (min-width: 1400px) {
    .pdp-container-full,
    .product-single-tabs .container {
        max-width: calc(100% - 60px) !important;
        padding: 0 30px !important;
    }
}

@media (min-width: 1920px) {
    .pdp-container-full,
    .product-single-tabs .container {
        max-width: calc(100% - 80px) !important;
        padding: 0 40px !important;
    }
}

/* Mobil cihazlarda tam genişlik kullan */
@media (max-width: 991px) {
    .container,
    .container-fluid,
    .page-wrapper {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}


/* Mobile category blocks - 3 or more visible */
@media (max-width: 768px) {
    .category-colored {
        min-width: 90px !important;
        max-width: 100px !important;
        padding: 10px 8px !important;
        flex-direction: column !important;
        border-radius: 10px !important;
    }
    
    .category-icon-wrapper {
        margin-bottom: 8px;
    }
    
    .category-icon-wrapper img {
        width: 45px !important;
        height: 45px !important;
    }
    
    .category-name {
        font-size: 11px !important;
        text-align: center;
        line-height: 1.2;
    }
    
    .category-scroll {
        gap: 8px !important;
    }
}

/* Mobile scroll buttons over blocks */
@media (max-width: 768px) {
    .category-scroll-wrapper {
        padding: 15px 0 !important;
    }
    
    .category-scroll-wrapper .scroll-btn {
        width: 30px !important;
        height: 30px !important;
        background: rgba(255,255,255,0.9) !important;
        border: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
        border-radius: 50% !important;
    }
    
    .category-scroll-wrapper .scroll-left {
        left: 5px !important;
    }
    
    .category-scroll-wrapper .scroll-right {
        right: 5px !important;
    }
    
    .category-scroll {
        padding: 0 10px !important;
    }
}

/* Mobile categories section - wider area */
@media (max-width: 768px) {
    .categories-section {
        padding: 10px 0 !important;
    }
    
    .categories-section .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
        max-width: 100% !important;
    }
    
    .category-scroll-wrapper {
        padding: 10px 0 !important;
        margin: 0 !important;
    }
}

/* Mobile category blocks - slightly wider */
@media (max-width: 768px) {
    .category-colored {
        min-width: 93px !important;
        max-width: 103px !important;
    }
}

/* Mobile category blocks - wider */
@media (max-width: 768px) {
    .category-colored {
        min-width: 100px !important;
        max-width: 110px !important;
    }
}


/* Full width top bar background only */
.desktop-header {
    position: relative;
}

.desktop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: #1a1a1a;
    z-index: 0;
}

.desktop-header > .container {
    position: relative;
    z-index: 1;
}
