/* ========================================
   GENEL STILLER
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #6f6f6f;
    --third-color: #e2e8f0;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Montserrat", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--light-gray);
    padding: 8px 0;
    font-size: 11px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

.top-bar .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: var(--text-color);
    font-weight: 400;
    transition: var(--transition);
}

.top-links a:hover {
    color: var(--secondary-color);
}

.top-links i {
    margin-right: 5px;
    font-size: 10px;
}

/* ========================================
   MAIN NAVIGATION
   ======================================== */
.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
    transition: var(--transition);
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-nav .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.desktop-menu {
    flex: 1;
    display: flex;
    justify-content:flex-start;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-color);
    padding: 10px 0;
    display: block;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-item:hover a::after {
    width: 100%;
}

/* Mega Menu */
.has-submenu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 600px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    margin-top: 20px;
}

.has-submenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    margin-top: 0;
}

.mega-menu-content {
    display: flex;
    gap: 60px;
}

.mega-column h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 10px;
}

.mega-column ul li a {
    font-size: 12px;
    color: #666;
    transition: var(--transition);
}

.mega-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Nav Icons */
.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    font-size: 16px;
    color: var(--text-color);
    position: relative;
}

.nav-icon:hover {
    color: var(--secondary-color);
}

.cart-icon .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-close {
    font-size: 24px;
    color: var(--text-color);
}

.mobile-menu-content {
    padding: 20px 0;
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-color);
}

.mobile-nav-link i {
    font-size: 12px;
    color: #999;
}

.mobile-submenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: var(--transition);
    list-style: none;
    padding: 0;
    overflow-y: auto;
    z-index: 999
}

.mobile-submenu.active {
    transform: translateX(0);
}

.mobile-back {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.mobile-submenu li a {
    display: block;
    padding: 18px 30px;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
}

/* ========================================
   SEARCH OVERLAY
   ======================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 600px;
    padding: 0 30px;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 10px 0;
    outline: none;
    color: var(--primary-color);
}

.search-input::placeholder {
    color: #999;
    font-weight: 300;
}

.search-submit {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    color: var(--secondary-color);
}

.search-suggestions {
    margin-top: 30px;
}

.search-suggestions h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 15px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    margin-bottom: 10px;
}

.search-suggestions a {
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.search-suggestions a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}
.mobilSepet{display:none!important}
/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 10;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-btn:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SECTIONS
   ======================================== */
.section-wrapper {
    padding: 80px 0;
}

.section-wrapper .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-link {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-color);
    text-decoration: underline;
    transition: var(--transition);
}

.section-link:hover {
    color: var(--secondary-color);
}

/* ========================================
   OWL CAROUSEL CUSTOMIZATION
   ======================================== */
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.owl-carousel .owl-nav button svg {
    width: 24px;
    height: 24px;
    fill: #000;
}

.owl-carousel .owl-nav button:hover svg {
    fill: var(--secondary-color);
}

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

.owl-carousel .owl-nav .owl-next {
    right: -50px;
}

.owl-carousel .owl-dots {
    display: none;
}

/* New Arrivals Carousel */
.new-arrivals-carousel .product-card {
    margin: 10px;
}

/* ========================================
   BANNERS SECTION
   ======================================== */
.banners-section {
    padding: 40px 0 80px;
}

.banners-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.banner-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.banner-item:hover img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px 30px;
    color: #fff;
    transition: var(--transition);
}

.banner-item:hover .banner-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.banner-title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-cta {
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: underline;
    transition: var(--transition);
}

.banner-item:hover .banner-cta {
    letter-spacing: 2px;
}

/* ========================================
   BEST SELLERS GRID
   ======================================== */
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail-container {
    display: flex;
    min-height: calc(100vh - 120px);
    position: relative;
}

/* Product Images Column (Left - Desktop) */
.product-images-column {
    flex: 1;
    max-width: 50%;
    overflow-y: auto;
    padding: 40px 20px 40px 40px;
}

.product-image-item {
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
    overflow: hidden;
}

.product-image-item img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.product-image-item:hover img {
    opacity: 0.95;
}

/* Image Zoom Overlay - Cursor Follow */
.image-zoom-overlay {
    position: fixed;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.image-zoom-overlay.active {
    opacity: 1;
}

.image-zoom-overlay svg {
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Product Info Column (Right - Desktop) */
.product-info-column {
    flex: 1;
    max-width: 50%;
    padding: 40px 40px 40px 20px;
    position: relative;
}

.product-info-sticky {
    position: sticky;
    top: 100px;
    padding: 40px;
    background: #fff;
}

.mobile-sheet-handle {
    display: none;
}

.product-wishlist-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: var(--transition);
}

.product-wishlist-btn:hover {
    border-color: var(--primary-color);
}

.product-wishlist-btn i {
    font-size: 18px;
    color: var(--text-color);
}

.product-wishlist-btn.active i {
    color: red;
}

.product-detail-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-detail-price {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 40px;
}

/* Product Options */
.product-options {
    margin-bottom: 30px;
}

.option-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Color Selector */
.color-selector {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-color);
    padding: 3px;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.color-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary-color);
}

/* Size Selector */
.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    width: 60px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover,
.size-option.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 30px;
}

.add-to-cart-btn:hover {
    background: var(--secondary-color);
}

/* Product Features */
.product-features {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #666;
}

.feature-item i {
    font-size: 20px;
    color: var(--secondary-color);
}

/* Product Accordion */
.product-accordion {
    margin-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
    cursor: pointer;
    color: var(--text-color);
}

.accordion-header i {
    transition: var(--transition);
    font-size: 12px;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-header.active + .accordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}

.accordion-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content ul li {
    font-size: 13px;
    color: #666;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.accordion-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    display: block;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: none;
    padding: 40px 20px;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    background: none;
    border: none;
    cursor: none;
    z-index: 10001;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.close-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.close-box svg {
    color: #333;
}

/* Product Content Section */
.product-content-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.product-content-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.description-section {
    margin-bottom: 80px;
}

.description-text {
    max-width: 800px;
}

.description-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.related-products-section .section-title {
    margin-bottom: 40px;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb-section {
    padding: 20px 0;
    background: var(--light-gray);
}

.breadcrumb-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
    font-size: 11px;
}

.breadcrumb-item a {
    color: #666;
}

.breadcrumb-item.active {
    color: var(--text-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: #999;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    padding: 40px 0 80px;
}

.main-content .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    position: relative;
}

/* ========================================
   FILTERS SIDEBAR
   ======================================== */
.filters-sidebar {
    width: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
}

.filters-sidebar.active {
    width: 280px;
    opacity: 1;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.filters-header h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.filters-close {
    font-size: 20px;
    color: #999;
    display: none;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.filter-toggle i {
    transition: var(--transition);
    font-size: 10px;
}

.filter-toggle.active i {
    transform: rotate(180deg);
}

.filter-options {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.filter-toggle.active + .filter-options {
    max-height: 500px;
    padding-top: 15px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.filter-option:hover {
    color: var(--text-color);
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-box {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    padding: 0;
}

.size-option input {
    display: none;
}

.size-box {
    display: block;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.size-option input:checked + .size-box,
.size-box:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ========================================
   PRODUCTS AREA
   ======================================== */
.products-area {
    flex: 1;
    transition: var(--transition);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
}

.page-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-right: 50px
}

.show-filters-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px 0px 0px;
    border: 0px solid var(--border-color);
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1.25rem;
}

.show-filters-btn:hover {
  color:black
}

.sort-dropdown select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    font-size: 12px;
    letter-spacing: 0.5px;
    background: #fff;
    cursor: pointer;
    min-width: 150px;
}

.results-info {
    font-size: 11px;
    letter-spacing: 1px;
    color: #999;
}

.view-toggles {
    display: flex;
    gap: 10px;
}

.view-toggle {
    width: 20px;
    height: 20px;
    border: 0px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    transition: var(--transition);
}

/*.view-toggle:hover,
view-toggle.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}*/

.view-toggle.active svg path{

    fill:#000000

}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.products-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.products-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.products-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    position: relative;
    cursor: pointer;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
    aspect-ratio: 1/1;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
  /*  transform: scale(1.05);*/
}

/* Product Image Carousel */
.product-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-img.active {
    opacity: 1;
    position: relative;
}

.product-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
    padding: 0;
}

.product-card:hover .product-nav {
    opacity: 1;
}

.product-nav.prev {
    left: 10px;
}

.product-nav.next {
    right: 10px;
}

.product-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.product-nav svg {
    width: 24px;
    height: 24px;
    fill: #000;
    transition: var(--transition);
}

.product-nav:hover svg {
    fill: var(--secondary-color);
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.wishlist-btn:hover {
    background: #fff;
}

.wishlist-btn i {
    font-size: 14px;
    color: var(--text-color);
}

.wishlist-btn.active i {
    color: red;
}

/* Product Info */
.product-info {
    text-align: left;
}

.product-name {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.product-price {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.5px;
}

/* ========================================
   LOAD MORE
   ======================================== */
.load-more-section {
    text-align: center;
    padding: 40px 0;
}

.load-more-btn {
    padding: 15px 40px;
    border: 1px solid var(--primary-color);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--primary-color);
    transition: var(--transition);
    margin-bottom: 20px;
}

.load-more-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.showing-count {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.5px;
}

/* ========================================
   MOBILE FILTER BAR
   ======================================== */
.mobile-filter-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-filter-btn {
    flex: 1;
    padding: 12px;
    background: var(--third-color);
    color: #000;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 4px;
}

.mobile-filter-btn i {
    margin-right: 8px;
}

.mobile-view-toggles {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--light-gray);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    font-size: 12px;
    color: #666;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 12px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 11px;
    color: #999;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .top-bar {
        display: none;
    }

    .products-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 22px;
    }

    .view-toggles {
        display: none;
    }

    /* Hero */
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-prev {
        left: 20px;
    }

    .hero-next {
        right: 20px;
    }

    /* Sections */
    .section-wrapper {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .owl-carousel .owl-nav .owl-next {
        right: -20px;
    }

    .banner-title {
        font-size: 20px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 767px) {
    .main-content .container-fluid,
    .main-nav .container-fluid,
    .breadcrumb-section .container-fluid {
        padding: 0 20px;
    }

    .nav-wrapper {
        padding: 15px 0;
    }

    .logo a {
        font-size: 12px;
    }

    .nav-icons {
        gap: 15px;
    }

    .nav-icon {
        font-size: 18px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .show-filters-btn {
        display: none;
    }

    .products-grid {
        gap: 20px;
        margin-bottom: 100px;
    }

    .products-grid.grid-2,
    .products-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-name {
        font-size: 12px;
    }

    .product-price {
        font-size: 11px;
    }

    .mobile-filter-bar {
        display: flex;
        align-items: center;
    }

    /* Mobile Filter Sidebar */
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 9999;
        transform: translateY(100%);
        transition: var(--transition);
        overflow-y: auto;
        padding: 20px;
    }

    .filters-sidebar.active {
        width: 100%;
        transform: translateY(0);
        opacity: 1;
    }

    .filters-close {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* Hero Mobile */
    .hero-slider {
        height: 70vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 12px;
    }

    .hero-nav {
        width: 35px;
        height: 35px;
    }

    .hero-nav svg {
        width: 20px;
        height: 20px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .hero-dots {
        bottom: 30px;
    }

    /* Sections */
    .section-wrapper {
        padding: 40px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .owl-carousel .owl-nav button {
        display: none !important;
    }

    .banner-title {
        font-size: 18px;
    }

    .banner-overlay {
        padding: 25px 20px;
    }

    /* Product Detail Mobile */
    .product-detail-container {
      flex-direction: column;
      min-height: auto;
      padding-bottom: 0;
  }

    .product-images-column {
        max-width: 100%;
        padding: 20px;
        max-height: none;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .product-image-item {
        margin-bottom: 15px;
    }

    .product-info-column {
        max-width: 100%;
        padding: 0 20px;
        position: static;
        height: auto;
        min-height: 0;
        max-height: none;
        background: #fff;
        border-radius: 0;
        box-shadow: none;
        transition: none;
    }

    .product-info-column.peek {
        /* Başlangıç durumu - başlık, fiyat, numara ve sepete ekle görünür */
        min-height: 63px; /* 350px → 63px */
    }

    .product-info-column.expanded {
        /* Açık durumu - tüm içerik görünür */
        min-height: 70vh;
    }

    .product-info-sticky {
        position: relative;
        top: 0;
        padding: 0;
        background: #fff;
        border-radius: 20px 20px 0 0;
        /* max-height: 85vh;
        overflow: hidden; */
        display: flex;
        flex-direction: column;
    }

    .mobile-sheet-handle {
        display: block;
        width: 40px;
        height: 4px;
        background: #ddd;
        border-radius: 2px;
        margin: 15px auto;
        cursor: pointer;
        flex-shrink: 0;
    }

    /* Bottom sheet content area */
    .bottom-sheet-preview {
        padding: 0 20px 20px;
        flex-shrink: 0;
    }

    .bottom-sheet-content {
        padding: 0 20px 30px;
        max-height: 63px;
        overflow: hidden;
        transition: max-height 0.35s ease-in-out;
    }

    .product-info-column.expanded .bottom-sheet-content {
        max-height: 2000px;
        overflow-y: auto;
    }

    /* Smooth pointer cursor for clickable areas */
    .product-detail-title,
    .product-detail-price {
        cursor: pointer;
        transition: opacity 0.2s ease;
    }

    .product-detail-title:active,
    .product-detail-price:active {
        opacity: 0.7;
    }

    .product-wishlist-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        width: 40px;
        height: 40px;
        z-index: 10;
    }

    .product-detail-title {
        font-size: 18px;
        margin-bottom: 6px;
        padding-right: 50px;
    }

    .product-detail-price {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    /* Preview'deki numara seçimi - daha kompakt */
    .bottom-sheet-preview .product-options {
        margin-bottom: 10px;
    }

    .bottom-sheet-preview .option-label {
        font-size: 11px;
        margin-bottom: 6px;
        display: block;
    }

    .bottom-sheet-preview .size-selector {
        gap: 6px;
    }

    .bottom-sheet-preview .size-option {
        width: 42px;
        height: 36px;
        font-size: 12px;
    }

    .bottom-sheet-preview .add-to-cart-btn {
        padding: 13px;
        font-size: 13px;
    }

    .add-to-cart-btn {
        width: 100%;
        padding: 16px;
        font-size: 14px;
        margin-bottom: 0;
    }

    /* Content that appears when expanded */
    .product-options {
        margin-bottom: 20px;
    }

    .color-option {
        width: 50px;
        height: 50px;
    }

    .size-option {
        width: 55px;
        height: 45px;
        font-size: 13px;
    }

    .product-features {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .feature-item {
        flex: 1;
        min-width: 80px;
        font-size: 10px;
    }

    .feature-item i {
        font-size: 18px;
    }

    .accordion-item {
        border-bottom: 1px solid var(--border-color);
    }

    .accordion-header {
        padding: 18px 0;
        font-size: 13px;
    }

    .accordion-content {
        /*padding-bottom: 15px;*/
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .close-box {
        width: 60px;
        height: 60px;
    }

    .image-zoom-overlay {
        width: 60px;
        height: 60px;
    }

    .image-zoom-overlay svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .products-grid.grid-2 {
        grid-template-columns: 1fr;
    }

    .sort-dropdown select {
        min-width: 120px;
        font-size: 11px;
    }

    .results-info {
        font-size: 10px;
    }
  .product-detail-title{
    font-size:13px;
  }
  .product-detail-price{
    font-size:13px;
  }
  .bottom-sheet-preview{
    padding-bottom:0px!important
  }
  .product-options{
      font-size: 11px;
  }
  .urunSecimTable{
    margin-top:0px!important;
    padding-top:0px!important;
  }
  .mobilSepet{
    display:block!important;
    width: 25%!important;
    position: absolute;
    right: 10px;
    top: 115px;
    border-radius: 5px;
    padding:2px!important
  }
  .desktopSepet{display:none!important}


}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.15s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }
