/**
 * Funori Theme - Furniture Shopify Theme OS 2.0
 * %100 Aynı Tasarım
 */

:root {
    /* Funori Color Palette - Anthracite Theme */
    --funori-black: #000000;
    --funori-anthracite: #2C2C2C;
    --funori-anthracite-dark: #1A1A1A;
    --funori-anthracite-light: #4A4A4A;
    --funori-anthracite-lighter: #6A6A6A;
    --funori-white: #ffffff;
    --funori-grey: #f5f5f5;
    --funori-dark-grey: #333333;
    --funori-text: #2C2C2C;
    --funori-text-light: #6A6A6A;
    --funori-text-lighter: #9A9A9A;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(44,44,44,0.1);
    --shadow-md: 0 4px 6px rgba(44,44,44,0.1);
    --shadow-lg: 0 10px 20px rgba(44,44,44,0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--funori-white);
    color: var(--funori-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

html {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Top Bar - Black Background */
.top-bar {
    background-color: var(--funori-black);
    color: var(--funori-white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1000;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-link {
    color: var(--funori-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-weight: 400;
}

.top-bar-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-link i {
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.currency-selector,
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--funori-white);
    cursor: pointer;
    font-weight: 400;
}

.currency-selector select,
.language-selector select {
    background: transparent;
    border: none;
    color: var(--funori-white);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.currency-selector select option,
.language-selector select option {
    background: var(--funori-black);
    color: var(--funori-white);
}

/* Main Header - White Background */
.main-header {
    background-color: var(--funori-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Funori Header Navigation */
.funori-header-nav {
    flex: 1;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.funori-nav-menu {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 2rem;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.funori-nav-item {
    margin: 0;
    position: relative;
}

.funori-nav-item.has-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.funori-nav-link {
    color: var(--funori-anthracite);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.funori-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--funori-anthracite);
    transition: width 0.3s ease;
}

.funori-nav-link:hover {
    color: var(--funori-anthracite-dark);
}

.funori-nav-link:hover::after {
    width: 100%;
}

.funori-nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--funori-white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.funori-nav-item .dropdown-menu li {
    margin: 0;
}

.funori-nav-item .dropdown-menu .dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--funori-text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.funori-nav-item .dropdown-menu .dropdown-item:hover {
    background-color: var(--funori-grey);
    color: var(--funori-anthracite);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--funori-text);
    cursor: pointer;
    padding: 0.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--funori-dark-grey);
}

.funori-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--funori-text);
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.funori-mobile-menu-toggle:hover {
    color: var(--funori-dark-grey);
}

/* Show mobile menu toggle on mobile */
@media (max-width: 992px) {
    .funori-mobile-menu-toggle {
        display: flex !important;
    }
}

@media (max-width: 767.98px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .funori-mobile-menu-toggle {
        display: flex !important;
    }
}

.header-search-icon {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--funori-text);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-search-icon:hover {
    color: var(--funori-dark-grey);
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-decoration: none;
    color: var(--funori-text);
    margin-right: 2rem;
}

.logo-section .site-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text-main {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--funori-anthracite);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-action-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--funori-anthracite) !important;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.header-action-btn:hover {
    color: var(--funori-anthracite-dark) !important;
}

.header-action-btn i,
.header-action-btn i.fas,
.header-action-btn i.fa-heart,
.header-action-btn i.fa-shopping-bag,
.header-action-btn i.fa-sign-in-alt,
.header-action-btn i.fa-user,
.header-action-btn i.fa-user-shield,
.header-action-btn i.fa-file-invoice-dollar {
    color: var(--funori-anthracite) !important;
}

.header-action-btn:hover i,
.header-action-btn:hover i.fas,
.header-action-btn:hover i.fa-heart,
.header-action-btn:hover i.fa-shopping-bag,
.header-action-btn:hover i.fa-sign-in-alt,
.header-action-btn:hover i.fa-user,
.header-action-btn:hover i.fa-user-shield,
.header-action-btn:hover i.fa-file-invoice-dollar {
    color: var(--funori-anthracite-dark) !important;
}

.header-action-btn .badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--funori-anthracite) !important;
    color: var(--funori-white) !important;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    transform: translate(25%, -25%);
}

/* Categories Bar - Removed for Funori style */
.categories-bar {
    display: none;
}

/* Funori Hero Slider - Rechhome Style (Standard Full-Width) */
.funori-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    background: transparent;
}

.funori-hero-slider.rechhome-style {
    margin-bottom: 0;
}

.funori-hero-slider .carousel {
    position: relative;
}

.funori-hero-slider .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.funori-hero-slider .carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

.funori-hero-slider .carousel-item.active,
.funori-hero-slider .carousel-item-next,
.funori-hero-slider .carousel-item-prev {
    display: block;
}

.funori-hero-slider .carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.funori-hero-slider .carousel-fade .carousel-item.active,
.funori-hero-slider .carousel-fade .carousel-item-next.carousel-item-start,
.funori-hero-slider .carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.funori-hero-slider .carousel-fade .active.carousel-item-start,
.funori-hero-slider .carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

.funori-hero-slide {
    position: relative;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    width: 100%;
}

.funori-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.funori-hero-slide .container {
    position: relative;
    z-index: 2;
}

.funori-hero-content {
    position: relative;
    z-index: 2;
    color: var(--funori-white);
    padding: 2rem 0;
}

.funori-hero-content-center {
    text-align: center;
}

.funori-hero-content-left {
    text-align: left;
}

.funori-hero-content-right {
    text-align: right;
}

.funori-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--funori-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.funori-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--funori-white);
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.funori-hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--funori-white);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.funori-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--funori-white);
    color: var(--funori-black);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--funori-white);
    font-size: 1rem;
    border-radius: 50px;
}

.funori-hero-btn:hover {
    background-color: transparent;
    color: var(--funori-white);
    border-color: var(--funori-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.funori-hero-btn i {
    transition: var(--transition);
}

.funori-hero-btn:hover i {
    transform: translateX(5px);
}

/* Carousel Controls - Rechhome Style */
.funori-hero-slider .carousel-control-prev,
.funori-hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: var(--transition);
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.funori-hero-slider .carousel-control-prev {
    left: 2rem;
}

.funori-hero-slider .carousel-control-next {
    right: 2rem;
}

.funori-hero-slider .carousel-control-prev:hover,
.funori-hero-slider .carousel-control-next:hover {
    background-color: var(--funori-white);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.funori-hero-slider .carousel-control-prev-icon,
.funori-hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0);
}

/* Carousel Indicators - Rechhome Style */
.funori-hero-slider .carousel-indicators {
    bottom: 2rem;
    margin-bottom: 0;
    z-index: 3;
    justify-content: center;
}

.funori-hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 6px;
    transition: var(--transition);
    opacity: 0.7;
}

.funori-hero-slider .carousel-indicators button.active {
    background-color: var(--funori-white);
    opacity: 1;
    width: 12px;
    height: 12px;
    border: 2px solid var(--funori-white);
}

/* Categories Section - GearO Style (Horizontal List) */
.section-list-categories.list-categories-v0 {
    padding: 1.5rem 0 !important;
    background: #ffffff !important;
    border-top: 1px solid #e8e8e8 !important;
    border-bottom: 1px solid #e8e8e8 !important;
    width: 100% !important;
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    clear: both !important;
}

.section-list-categories.list-categories-v0 * {
    box-sizing: border-box;
}

/* Ensure categories list is visible and horizontal */
.section-list-categories.list-categories-v0 {
    clear: both !important;
    float: none !important;
}

.section-list-categories.list-categories-v0 .funori-categories-list {
    clear: both !important;
    float: none !important;
}

.funori-categories-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2.5rem !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    list-style: none !important;
    box-sizing: border-box !important;
    min-height: 40px !important;
    height: auto !important;
    clear: both !important;
    float: none !important;
}

.funori-categories-list > * {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

.funori-categories-list::-webkit-scrollbar {
    display: none;
}

.funori-category-link {
    display: inline-block !important;
    text-decoration: none !important;
    color: var(--funori-text) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    padding: 0.5rem 0 !important;
    position: relative !important;
    transition: var(--transition) !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    min-width: fit-content !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.5 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
}

.funori-category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--funori-black);
    transition: width 0.3s ease;
}

.funori-category-link:hover {
    color: var(--funori-black);
}

.funori-category-link:hover::after {
    width: 100%;
}

.funori-category-view-all {
    font-weight: 600 !important;
    color: var(--funori-black) !important;
    margin-left: 2rem !important;
    padding-left: 2rem !important;
    border-left: 1px solid #e0e0e0 !important;
    flex-shrink: 0 !important;
}

.funori-category-view-all::after {
    display: none;
}

.funori-category-view-all:hover {
    opacity: 0.7;
}

/* Responsive Categories List */
@media (max-width: 992px) {
    .funori-header-nav {
        display: none !important;
    }
    
    .funori-categories-list {
        gap: 2rem !important;
        padding: 0 1.5rem !important;
    }
    
    .funori-category-link {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 768px) {
    .section-list-categories.list-categories-v0 {
        padding: 2rem 0 !important;
    }
    
    .funori-categories-list {
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .funori-category-link {
        font-size: 0.9rem !important;
    }
    
    .funori-category-view-all {
        padding-left: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .funori-categories-list {
        gap: 1.25rem !important;
        padding: 0 1rem !important;
    }
    
    .funori-category-link {
        font-size: 0.85rem !important;
    }
    
    .funori-category-view-all {
        padding-left: 1rem !important;
    }
}

/* Hero Section - Fallback (for non-slider hero) */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--funori-white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    width: 100%;
}

.hero-content-left {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--funori-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--funori-white);
    opacity: 0.95;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--funori-white);
    color: var(--funori-black);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--funori-white);
}

.hero-btn:hover {
    background-color: transparent;
    color: var(--funori-white);
    border-color: var(--funori-white);
}

/* Section Headings */
section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--funori-text);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -1px;
}

section .text-muted {
    font-size: 1.1rem;
    color: var(--funori-text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--funori-white);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--funori-grey);
}

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

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

.product-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--funori-white);
    min-height: 200px;
}

.product-card .mt-auto {
    margin-top: auto;
}

/* Fix button text wrapping on mobile */
@media (max-width: 576px) {
    .product-card .btn {
        white-space: nowrap !important;
        font-size: 0.75rem !important;
        padding: 0.375rem 0.5rem !important;
    }
    
    .product-card .card-body {
        padding: 0.75rem !important;
        min-height: 180px !important;
    }
    
    .product-card .btn i {
        margin-right: 0.25rem !important;
    }
}

.product-card .product-title,
body.theme-funori .product-card .product-title,
body.theme-funori .product-card .card-title,
body.theme-funori .product-card h6 {
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    margin-bottom: 0.5rem !important;
    color: var(--funori-anthracite) !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-title a {
    color: var(--funori-text);
    text-decoration: none;
    transition: var(--transition);
}

.product-card .product-title a:hover {
    color: var(--funori-dark-grey);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-price .current-price,
body.theme-funori .product-price .current-price,
body.theme-funori .product-card .current-price,
body.theme-funori .price-current {
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: var(--funori-anthracite) !important;
}

.product-price .old-price,
body.theme-funori .product-price .old-price,
body.theme-funori .product-card .old-price,
body.theme-funori .price-old {
    font-size: 0.7rem !important;
    color: var(--funori-text-light) !important;
    text-decoration: line-through !important;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--funori-black);
    color: var(--funori-white);
    border: 2px solid var(--funori-black);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--funori-black);
    border-color: var(--funori-black);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--funori-black);
    border: 2px solid var(--funori-black);
}

.btn-outline-primary:hover {
    background-color: var(--funori-black);
    color: var(--funori-white);
}

/* Shop by Department Section - Funori Style */
/* Modern Categories Section */
.funori-modern-categories {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

.funori-modern-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(44, 44, 44, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 44, 44, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.funori-modern-categories .container {
    position: relative;
    z-index: 1;
}

.funori-categories-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.funori-categories-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--funori-black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.funori-categories-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--funori-anthracite) 0%, var(--funori-anthracite-light) 100%);
    border-radius: 2px;
}

.funori-categories-subtitle {
    font-size: 1.15rem;
    color: var(--funori-text-light);
    margin: 0;
    font-weight: 400;
}

.funori-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.funori-category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.funori-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.funori-category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.16),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(44, 44, 44, 0.12);
}

.funori-category-card:hover::before {
    opacity: 1;
}

.funori-category-image-container {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Smaller aspect ratio for more compact display */
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.funori-category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.funori-category-card:hover .funori-category-image {
    transform: scale(1.1);
}

.funori-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.funori-category-card:hover .funori-category-overlay {
    opacity: 1;
}

.funori-category-link-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.funori-category-card:hover .funori-category-link-text {
    transform: translateY(0);
}

.funori-category-content {
    padding: 1.5rem;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.funori-category-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--funori-black);
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
}

.funori-category-card:hover .funori-category-name {
    color: var(--funori-anthracite);
}

/* Responsive */
@media (max-width: 992px) {
    .funori-modern-categories {
        padding: 4rem 0;
    }
    
    .funori-categories-title {
        font-size: 2.25rem;
    }
    
    .funori-categories-title::after {
        width: 50px;
        height: 3px;
    }
    
    .funori-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .funori-modern-categories {
        padding: 3.5rem 0;
    }
    
    .funori-categories-header {
        margin-bottom: 2.5rem;
    }
    
    .funori-categories-title {
        font-size: 2rem;
    }
    
    .funori-categories-title::after {
        width: 45px;
        height: 3px;
    }
    
    .funori-categories-subtitle {
        font-size: 1rem;
    }
    
    .funori-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.25rem;
    }
    
    .funori-category-content {
        padding: 1.25rem;
    }
    
    .funori-category-name {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .funori-modern-categories {
        padding: 3rem 0;
    }
    
    .funori-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .funori-category-card {
        border-radius: 16px;
    }
}


/* Modern Footer */
footer.modern-footer {
    background-color: var(--funori-black);
    color: var(--funori-white);
    padding: 4rem 0 2rem !important;
    margin-top: 4rem;
    margin-bottom: 0 !important;
}

footer.modern-footer .container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footer-content {
    padding-bottom: 2rem;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--funori-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--funori-white), transparent);
}

.footer-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link i {
    font-size: 0.85rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--funori-white);
    padding-left: 8px;
    transform: translateX(4px);
}

.footer-link:hover i {
    opacity: 1;
}

.footer-empty {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-style: italic;
}

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

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact-list i {
    width: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--funori-white);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-optima {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-optima-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-optima-link:hover {
    opacity: 1;
}

.footer-optima-logo {
    height: 30px;
    width: auto;
    display: block;
}

.footer-optima-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    footer.modern-footer {
        padding: 3rem 0 1.5rem !important;
    }
    
    .footer-widget {
        margin-bottom: 2.5rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    footer.modern-footer {
        padding: 2.5rem 0 1.5rem !important;
    }
    
    .footer-content {
        padding-bottom: 1.5rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-copyright,
    .footer-optima {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .footer-optima {
        justify-content: center;
    }
}

/* Remove white space below footer */
body.theme-funori {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background-color: var(--funori-white) !important;
    min-height: 100vh !important;
}

/* Fill area below footer with black */
body.theme-funori::after {
    content: '';
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: var(--funori-black);
    z-index: -999;
    pointer-events: none;
}

body.theme-funori main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.theme-funori footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.theme-funori footer::after {
    display: none !important;
    content: none !important;
}

/* Ensure no white space after footer */
body.theme-funori footer + * {
    display: none !important;
}

html {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    height: 100% !important;
    background-color: var(--funori-black) !important;
}

body.theme-funori {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
}

body.theme-funori main {
    flex: 1 !important;
}

body.theme-funori footer {
    margin-top: auto !important;
}

/* Remove any white space after footer */
body.theme-funori footer ~ * {
    display: none !important;
}

/* Ensure footer extends to bottom */
body.theme-funori footer {
    position: relative;
    z-index: 1;
}

/* Remove padding from last element in footer */
body.theme-funori footer .row:last-child .col-md-12 {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body.theme-funori footer .text-muted.mb-0 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove all margins and padding from footer elements */
body.theme-funori footer * {
    margin-bottom: 0 !important;
}

body.theme-funori footer .row:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.theme-funori footer .row:last-child * {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove hr margin */
body.theme-funori footer hr {
    margin-bottom: 0 !important;
    margin-top: 2rem !important;
}

/* Ensure container has no bottom padding */
body.theme-funori footer .container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Legacy footer styles - kept for compatibility */
footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--funori-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

footer:not(.modern-footer) a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.75rem;
}

footer:not(.modern-footer) a:hover {
    color: var(--funori-white);
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Bottom Navigation - Mobile */
.bottom-navigation {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--funori-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.75rem 0;
    border-top: 1px solid var(--funori-grey);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--funori-text-light);
    transition: var(--transition);
    flex: 1;
    position: relative;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--funori-anthracite);
}

.bottom-nav-item .badge {
    position: absolute;
    top: 0;
    right: 20%;
    background-color: var(--funori-anthracite);
    color: var(--funori-white);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--funori-black);
    color: var(--funori-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent p {
    margin: 0;
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.6;
}

.cookie-consent a {
    color: var(--funori-white);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-not-agree {
    background-color: transparent;
    color: var(--funori-white);
    border: 2px solid var(--funori-white);
}

.cookie-btn-not-agree:hover {
    background-color: var(--funori-white);
    color: var(--funori-black);
}

.cookie-btn-agree {
    background-color: var(--funori-white);
    color: var(--funori-black);
    border: 2px solid var(--funori-white);
}

.cookie-btn-agree:hover {
    background-color: transparent;
    color: var(--funori-white);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--funori-brown);
    color: var(--funori-white);
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-to-top:hover {
    background-color: var(--funori-dark-grey);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .funori-hero-slide {
        min-height: 500px;
        padding: 3rem 1.5rem;
    }
    
    .funori-hero-title {
        font-size: 2.5rem;
    }
    
    .funori-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .funori-hero-description {
        font-size: 1rem;
    }
    
    .funori-hero-content {
        padding: 1.5rem 0;
    }
    
    .funori-hero-slider .carousel-control-prev {
        left: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .funori-hero-slider .carousel-control-next {
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .funori-hero-slider .carousel-indicators {
        bottom: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    section h2 {
        font-size: 2.5rem;
    }
    
    .bottom-navigation {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    footer {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    footer {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .funori-carousel-inner {
        min-height: 450px;
        padding: 0 5%;
    }
    
    .funori-slide-item {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }
    
    .funori-slide-item.active {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        margin: 0;
        transform: scale(1);
    }
    
    .funori-slide-item.prev,
    .funori-slide-item.next {
        display: none;
    }
    
    .funori-hero-slide {
        min-height: 450px;
        height: 450px;
        border-radius: 15px;
        padding: 3rem 1.5rem;
    }
    
    .funori-hero-title {
        font-size: 2.5rem;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .funori-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .funori-hero-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        margin: 0 auto;
    }
    
    .funori-hero-content {
        padding: 1.5rem 0;
        text-align: center !important;
    }
    
    .funori-hero-slider .carousel-control-prev,
    .funori-hero-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .funori-hero-slider .carousel-control-prev {
        left: 0.5rem;
    }
    
    .funori-hero-slider .carousel-control-next {
        right: 0.5rem;
    }
    
    .funori-hero-slider .carousel-indicators {
        bottom: 1.5rem;
    }
    
    .top-bar-left {
        gap: 1rem;
        font-size: 0.75rem;
    }
    
    .top-bar-right {
        gap: 1rem;
    }
    
    .logo-text-main {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .funori-carousel-inner {
        min-height: 400px;
        padding: 0;
    }
    
    .funori-slide-item.active {
        margin: 0;
    }
    
    .funori-hero-slide {
        min-height: 400px;
        height: 400px;
        border-radius: 12px;
        padding: 2rem 1rem;
    }
    
    .funori-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .funori-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .funori-hero-btn {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
        margin: 0 auto;
    }
    
    .funori-hero-content {
        padding: 1rem 0;
        text-align: center !important;
    }
    
    .funori-hero-slider .carousel-control-prev,
    .funori-hero-slider .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .funori-hero-slider .carousel-indicators {
        bottom: 1rem;
    }
    
    .funori-hero-slider .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .top-bar {
        padding: 0.4rem 0;
        font-size: 0.7rem;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .funori-header-nav {
        display: none !important;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .header-left {
        display: flex !important;
        gap: 0.5rem;
    }
    
    .logo-text-main {
        font-size: 1.25rem;
    }
    
    /* Funori Mobile Menu Styles */
    #funoriMobileMenu {
        background: var(--funori-white);
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    #funoriMobileMenu .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    #funoriMobileMenu .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    #funoriMobileMenu .nav-menu li:last-child {
        border-bottom: none;
    }
    
    #funoriMobileMenu .nav-menu a {
        display: block;
        padding: 1rem;
        color: var(--funori-anthracite);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 500;
    }
    
    #funoriMobileMenu .nav-menu a:hover {
        background-color: var(--funori-grey);
        color: var(--funori-anthracite-dark);
    }
    
    #funoriMobileMenu .submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #f8f8f8;
    }
    
    #funoriMobileMenu .submenu li {
        border-bottom: 1px solid #e8e8e8;
    }
    
    #funoriMobileMenu .submenu a {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        font-size: 0.9rem;
        color: var(--funori-text);
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
}

/* Utility Classes */
.text-white {
    color: var(--funori-white) !important;
}

.bg-black {
    background-color: var(--funori-black) !important;
}

.bg-white {
    background-color: var(--funori-white) !important;
}

.bg-brown {
    background-color: var(--funori-brown) !important;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Hide default category sections that use py-5 for Funori theme */
body.funori-theme section.py-5:has(.categories-wrapper),
body.funori-theme section.py-5:has(.row.g-4),
body.funori-theme section.py-5:has(.card.text-center) {
    display: none !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Products Section - Modern Tab Style */
.funori-products-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

.funori-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(44, 44, 44, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 44, 44, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.funori-products-section .container {
    position: relative;
    z-index: 1;
}

.funori-products-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.funori-products-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--funori-black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.funori-products-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--funori-anthracite) 0%, var(--funori-anthracite-light) 100%);
    border-radius: 2px;
}

.funori-products-subtitle {
    font-size: 1.15rem;
    color: var(--funori-text-light);
    margin: 0;
    font-weight: 400;
}

/* Product Tabs */
.funori-product-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 2px solid #e5e5e5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.funori-tab-btn {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--funori-text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.funori-tab-btn:hover {
    color: var(--funori-black);
}

.funori-tab-btn.active {
    color: var(--funori-black);
    border-bottom-color: var(--funori-black);
}

.funori-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.funori-tab-content.active {
    display: block;
}

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

.funori-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.funori-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.06);
}

.funori-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.funori-product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.16),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(44, 44, 44, 0.12);
}

.funori-product-card:hover::before {
    opacity: 1;
}

.funori-product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    overflow: hidden;
}

.funori-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.funori-product-card:hover .funori-product-image {
    transform: scale(1.05);
}

.funori-product-actions {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.funori-product-card:hover .funori-product-actions {
    opacity: 1;
    transform: translateY(0);
}

.funori-product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.funori-product-action-btn:hover {
    background: var(--funori-black);
    color: #ffffff;
    transform: scale(1.1);
}

.funori-product-action-btn i {
    font-size: 0.9rem;
}

.funori-product-info {
    padding: 1.5rem;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.funori-product-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.funori-product-name a {
    color: var(--funori-black);
    text-decoration: none;
    transition: var(--transition);
}

.funori-product-name a:hover {
    color: var(--funori-text-light);
}

.funori-product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.funori-price-current {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--funori-black);
}

.funori-price-old {
    font-size: 0.9rem;
    color: var(--funori-text-light);
    text-decoration: line-through;
}

/* Responsive Products */
@media (max-width: 992px) {
    .funori-products-section {
        padding: 4rem 0;
    }
    
    .funori-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .funori-products-title {
        font-size: 2.25rem;
    }
    
    .funori-products-title::after {
        width: 50px;
        height: 3px;
    }
    
    .funori-product-tabs {
        max-width: 100%;
    }
    
    .funori-tab-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .funori-products-section {
        padding: 3.5rem 0;
    }
    
    .funori-products-header {
        margin-bottom: 2.5rem;
    }
    
    .funori-products-title {
        font-size: 2rem;
    }
    
    .funori-products-title::after {
        width: 45px;
        height: 3px;
    }
    
    .funori-products-subtitle {
        font-size: 1rem;
    }
    
    .funori-product-tabs {
        margin-bottom: 2rem;
    }
    
    .funori-tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .funori-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .funori-product-card {
        border-radius: 16px;
    }
    
    .funori-product-info {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .funori-products-section {
        padding: 3rem 0;
    }
    
    .funori-product-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .funori-tab-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: calc(33.333% - 0.5rem);
    }
    
    .funori-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Detail Page - Funori Style */
body.theme-funori .product-detail-section {
    padding: 3rem 0 !important;
    background: var(--funori-white) !important;
}

body.theme-funori .product-title {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    color: var(--funori-black) !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.01em !important;
    line-height: 1.3 !important;
}

body.theme-funori .product-price {
    margin-bottom: 2rem !important;
}

body.theme-funori .price-current {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--funori-black) !important;
}

body.theme-funori .price-old {
    font-size: 1.1rem !important;
    color: var(--funori-text-light) !important;
    text-decoration: line-through !important;
}

body.theme-funori .discount-badge {
    background-color: var(--funori-black) !important;
    color: var(--funori-white) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 0 !important;
}

body.theme-funori .product-gallery {
    background: var(--funori-white) !important;
}

body.theme-funori .main-product-image {
    border-radius: 0 !important;
    background: var(--funori-grey) !important;
}

body.theme-funori .thumbnail-image {
    border: 2px solid transparent !important;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0 !important;
}

body.theme-funori .thumbnail-image:hover {
    border-color: var(--funori-black) !important;
    opacity: 0.8;
}

body.theme-funori .thumbnail-image.active {
    border-color: var(--funori-black) !important;
    opacity: 1;
}

body.theme-funori .variant-option {
    border-radius: 0 !important;
    border: 2px solid var(--funori-black) !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition);
}

body.theme-funori .variant-option.btn-primary {
    background-color: var(--funori-black) !important;
    color: var(--funori-white) !important;
    border-color: var(--funori-black) !important;
}

body.theme-funori .variant-option.btn-outline-secondary {
    background-color: transparent !important;
    color: var(--funori-black) !important;
    border-color: var(--funori-black) !important;
}

body.theme-funori .variant-option:hover {
    background-color: var(--funori-black) !important;
    color: var(--funori-white) !important;
    border-color: var(--funori-black) !important;
}

body.theme-funori .quantity-input-group .btn {
    border-radius: 0 !important;
    border: 2px solid var(--funori-black) !important;
    background: transparent !important;
    color: var(--funori-black) !important;
    font-weight: 600 !important;
    transition: var(--transition);
}

body.theme-funori .quantity-input-group .btn:hover {
    background-color: var(--funori-black) !important;
    color: var(--funori-white) !important;
}

body.theme-funori .quantity-input-group .form-control {
    border-radius: 0 !important;
    border: 2px solid var(--funori-black) !important;
    border-left: none !important;
    border-right: none !important;
    text-align: center !important;
    font-weight: 600 !important;
}

body.theme-funori #addToCartBtn {
    border-radius: 0 !important;
    background-color: var(--funori-black) !important;
    color: var(--funori-white) !important;
    border: 2px solid var(--funori-black) !important;
    padding: 1rem 2.5rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 0.875rem !important;
    transition: var(--transition);
}

body.theme-funori #addToCartBtn:hover {
    background-color: transparent !important;
    color: var(--funori-black) !important;
    border-color: var(--funori-black) !important;
}

body.theme-funori .product-tabs .nav-tabs {
    border-bottom: 2px solid var(--funori-black) !important;
    border-radius: 0 !important;
}

body.theme-funori .product-tabs .nav-link {
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    color: var(--funori-text-light) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 1rem 2rem !important;
    transition: var(--transition);
    margin-bottom: -2px !important;
}

body.theme-funori .product-tabs .nav-link:hover {
    color: var(--funori-black) !important;
    border-bottom-color: var(--funori-black) !important;
}

body.theme-funori .product-tabs .nav-link.active {
    color: var(--funori-black) !important;
    background: transparent !important;
    border-bottom-color: var(--funori-black) !important;
}

body.theme-funori .product-tabs .tab-content {
    border: none !important;
    border-radius: 0 !important;
    padding: 2rem 0 !important;
}

body.theme-funori .modern-breadcrumb-section {
    background: var(--funori-grey) !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

body.theme-funori .breadcrumb-link {
    color: var(--funori-text-light) !important;
    transition: var(--transition);
}

body.theme-funori .breadcrumb-link:hover {
    color: var(--funori-black) !important;
}

body.theme-funori .breadcrumb-current {
    color: var(--funori-black) !important;
    font-weight: 600 !important;
}

body.theme-funori .stock-status .badge {
    border-radius: 0 !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 0.875rem !important;
}

body.theme-funori .social-proof .alert {
    border-radius: 0 !important;
    border: 2px solid var(--funori-black) !important;
    background: var(--funori-white) !important;
}

body.theme-funori .trust-badge-item {
    border-radius: 0 !important;
    border: 2px solid var(--funori-black) !important;
    transition: var(--transition);
}

body.theme-funori .trust-badge-item:hover {
    background-color: var(--funori-black) !important;
    color: var(--funori-white) !important;
}

body.theme-funori .trust-badge-item:hover .trust-badge-icon i {
    color: var(--funori-white) !important;
}

body.theme-funori .social-share .btn {
    border-radius: 0 !important;
    border: 2px solid var(--funori-black) !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition);
}

body.theme-funori .social-share .btn:hover {
    background-color: var(--funori-black) !important;
    color: var(--funori-white) !important;
    border-color: var(--funori-black) !important;
}

body.theme-funori .related-product-card {
    border-radius: 0 !important;
    border: 2px solid transparent !important;
    transition: var(--transition);
}

body.theme-funori .related-product-card:hover {
    border-color: var(--funori-black) !important;
    transform: translateY(-4px);
}

body.theme-funori .related-product-title a {
    color: var(--funori-black) !important;
    font-weight: 600 !important;
    transition: var(--transition);
}

body.theme-funori .related-product-card:hover .related-product-title a {
    color: var(--funori-text-light) !important;
}

body.theme-funori .related-product-price .price-current {
    color: var(--funori-black) !important;
    font-weight: 700 !important;
}

body.theme-funori .sticky-add-to-cart {
    border-top: 2px solid var(--funori-black) !important;
    background: var(--funori-white) !important;
}

body.theme-funori .sticky-add-to-cart .btn {
    border-radius: 0 !important;
    background-color: var(--funori-black) !important;
    color: var(--funori-white) !important;
    border: 2px solid var(--funori-black) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

body.theme-funori .sticky-add-to-cart .btn:hover {
    background-color: transparent !important;
    color: var(--funori-black) !important;
}

/* Cart Drawer - Hidden by default, only show when active */
body.theme-funori .cart-drawer {
    right: -100% !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

body.theme-funori .cart-drawer.active {
    right: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.theme-funori .cart-drawer-overlay {
    visibility: hidden !important;
    opacity: 0 !important;
}

body.theme-funori .cart-drawer-overlay.active {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Product Detail Page - Funori Style - Enhanced */
body.theme-funori .product-detail-section {
    padding: 4rem 0 !important;
    background: var(--funori-white) !important;
}

body.theme-funori .product-gallery {
    margin-bottom: 0 !important;
}

body.theme-funori .thumbnail-images-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.theme-funori .thumbnail-item {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

body.theme-funori .thumbnail-item:hover {
    border-color: var(--funori-black);
}

body.theme-funori .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

body.theme-funori .main-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--funori-grey);
    overflow: hidden;
}

body.theme-funori .main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    background: var(--funori-grey) !important;
}

body.theme-funori .product-info {
    padding-left: 3rem;
}

body.theme-funori .product-title {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    color: var(--funori-black) !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.01em !important;
    line-height: 1.3 !important;
    text-transform: none;
}

body.theme-funori .product-rating {
    margin-bottom: 1.5rem !important;
}

body.theme-funori .product-price {
    margin-bottom: 2.5rem !important;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

body.theme-funori .price-current {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--funori-black) !important;
    letter-spacing: -0.01em !important;
}

body.theme-funori .price-old {
    font-size: 1.1rem !important;
    color: var(--funori-text-light) !important;
    text-decoration: line-through !important;
}

body.theme-funori .variant-group label {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--funori-black) !important;
    margin-bottom: 1rem !important;
}

body.theme-funori .variant-options {
    gap: 0.75rem !important;
}

body.theme-funori .add-to-cart-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

body.theme-funori .quantity-selector label {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--funori-black) !important;
}

body.theme-funori .product-short-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--funori-text);
    margin-bottom: 2rem;
}

body.theme-funori .stock-status {
    margin-bottom: 1.5rem;
}

body.theme-funori .social-proof {
    margin-bottom: 1.5rem;
}

body.theme-funori .trust-badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

body.theme-funori .social-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

body.theme-funori .social-share label {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--funori-black) !important;
}

/* Responsive Product Detail */
@media (max-width: 992px) {
    body.theme-funori .product-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    body.theme-funori .product-title {
        font-size: 2.25rem !important;
    }
    
    body.theme-funori .price-current {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 768px) {
    body.theme-funori .product-title {
        font-size: 1.75rem !important;
    }
    
    body.theme-funori .price-current {
        font-size: 1.75rem !important;
    }
    
    body.theme-funori .product-tabs .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    body.theme-funori .thumbnail-item {
        width: 60px;
        height: 60px;
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--funori-white);
}

.card-body {
    padding: 1.5rem;
}

/* Forms */
.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--funori-black);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
    outline: none;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: var(--funori-anthracite);
    border-color: #ddd;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 0;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: var(--funori-anthracite);
    color: var(--funori-white);
    border-color: var(--funori-anthracite);
}

.pagination .page-item.active .page-link {
    background-color: var(--funori-anthracite);
    border-color: var(--funori-anthracite);
    color: var(--funori-white);
}

/* Category Page - Funori Theme */
body.theme-funori .modern-breadcrumb-section {
    background: var(--funori-white) !important;
    border-bottom: 1px solid #e0e0e0 !important;
    padding: 1rem 0 !important;
}

body.theme-funori .breadcrumb-link {
    color: var(--funori-text-light) !important;
    text-decoration: none !important;
    transition: var(--transition);
}

body.theme-funori .breadcrumb-link:hover {
    color: var(--funori-black) !important;
}

body.theme-funori .breadcrumb-current {
    color: var(--funori-black) !important;
    font-weight: 600 !important;
}

body.theme-funori .category-hero {
    background: var(--funori-black) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 300px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    padding: 4rem 0 !important;
}

body.theme-funori .category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

body.theme-funori .category-hero .container {
    position: relative;
    z-index: 2;
}

body.theme-funori .category-hero h1 {
    color: var(--funori-white) !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1rem !important;
}

body.theme-funori .category-hero .lead {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.25rem !important;
}

body.theme-funori .category-hero p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
}

body.theme-funori .subcategories-section {
    background: var(--funori-white) !important;
    padding: 3rem 0 !important;
}

body.theme-funori .subcategory-card {
    background: var(--funori-white) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    transition: var(--transition);
    text-decoration: none !important;
}

body.theme-funori .subcategory-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.1) !important;
    border-color: var(--funori-anthracite) !important;
}

body.theme-funori .subcategory-card .card-title {
    color: var(--funori-anthracite) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

body.theme-funori .subcategory-card small {
    color: var(--funori-text-light) !important;
}

body.theme-funori .page-header {
    background: var(--funori-white) !important;
    padding: 2rem 0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

body.theme-funori .page-header h1,
body.theme-funori .page-header .display-4 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--funori-anthracite) !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.01em !important;
}

body.theme-funori .page-header .breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.theme-funori .page-header .breadcrumb-item a {
    color: var(--funori-text-light) !important;
    font-size: 0.875rem !important;
    text-decoration: none !important;
}

body.theme-funori .page-header .breadcrumb-item.active {
    color: var(--funori-anthracite) !important;
    font-size: 0.875rem !important;
}

body.theme-funori .products-section {
    background: var(--funori-white) !important;
    padding: 2rem 0 !important;
}

body.theme-funori .products-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

body.theme-funori .products-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.theme-funori .filters-sidebar {
    background: var(--funori-white) !important;
    padding: 2rem !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 1px solid #e0e0e0 !important;
    position: sticky !important;
    top: 120px !important;
    max-height: calc(100vh - 140px) !important;
    overflow-y: auto !important;
    min-width: 250px !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.theme-funori .filters-sidebar .text-primary,
body.theme-funori .filters-sidebar .price-value-min,
body.theme-funori .filters-sidebar .price-value-max {
    color: var(--funori-anthracite) !important;
}

body.theme-funori .filters-sidebar h5 {
    color: var(--funori-anthracite) !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 2rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

body.theme-funori .filter-section h6 {
    color: var(--funori-anthracite) !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 1rem !important;
}

body.theme-funori .filter-section {
    border-bottom: 1px solid #e0e0e0 !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

body.theme-funori .filter-section:last-child {
    border-bottom: none !important;
}

body.theme-funori .form-control,
body.theme-funori .form-select {
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    padding: 0.75rem !important;
    color: var(--funori-anthracite) !important;
}

body.theme-funori .form-control:focus,
body.theme-funori .form-select:focus {
    border-color: var(--funori-anthracite) !important;
    box-shadow: 0 0 0 0.2rem rgba(44, 44, 44, 0.1) !important;
}

body.theme-funori .form-check-label {
    color: var(--funori-text) !important;
    font-size: 0.9rem !important;
}

body.theme-funori .btn-primary,
body.theme-funori .products-section .btn-primary,
body.theme-funori .filters-sidebar .btn-primary,
body.theme-funori .product-card .btn-primary {
    background-color: var(--funori-anthracite) !important;
    color: var(--funori-white) !important;
    border-color: var(--funori-anthracite) !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
    transition: var(--transition);
    margin-top: auto !important;
}

body.theme-funori .product-card .btn-outline-primary {
    background-color: transparent !important;
    color: var(--funori-anthracite) !important;
    border-color: var(--funori-anthracite) !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
    transition: var(--transition);
    margin-top: auto !important;
}

body.theme-funori .product-card .btn-outline-primary:hover {
    background-color: var(--funori-anthracite) !important;
    color: var(--funori-white) !important;
}

body.theme-funori .btn-primary:hover,
body.theme-funori .products-section .btn-primary:hover,
body.theme-funori .filters-sidebar .btn-primary:hover,
body.theme-funori .product-card .btn-primary:hover {
    background-color: var(--funori-anthracite-dark) !important;
    color: var(--funori-white) !important;
    border-color: var(--funori-anthracite-dark) !important;
}

/* Category page - Hide button text, show only icon (all screen sizes) */
body.theme-funori .products-section .product-card .btn-primary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.5rem !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    position: relative !important;
}

body.theme-funori .products-section .product-card .btn-primary i {
    font-size: 1rem !important;
    margin: 0 !important;
    display: inline-block !important;
    text-indent: 0 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

body.theme-funori .products-section .product-card .btn-primary span {
    display: none !important;
}

body.theme-funori .btn-outline-secondary {
    border-color: var(--funori-anthracite) !important;
    color: var(--funori-anthracite) !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
}

body.theme-funori .btn-outline-secondary:hover {
    background-color: var(--funori-anthracite) !important;
    color: var(--funori-white) !important;
}

body.theme-funori .products-toolbar {
    margin-bottom: 2rem !important;
}

body.theme-funori .products-toolbar .text-muted {
    color: var(--funori-text-light) !important;
    font-size: 0.875rem !important;
}

body.theme-funori .products-toolbar p {
    font-size: 0.875rem !important;
    margin-bottom: 0 !important;
}

body.theme-funori .products-toolbar strong {
    font-weight: 600 !important;
    color: var(--funori-anthracite) !important;
}

body.theme-funori .products-toolbar .form-select {
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
}

body.theme-funori .btn-outline-primary,
body.theme-funori .filters-sidebar .btn-outline-primary {
    border-color: var(--funori-anthracite) !important;
    color: var(--funori-anthracite) !important;
    border-radius: 0 !important;
    background-color: transparent !important;
}

body.theme-funori .btn-outline-primary:hover,
body.theme-funori .btn-check:checked + .btn-outline-primary,
body.theme-funori .filters-sidebar .btn-outline-primary:hover {
    background-color: var(--funori-anthracite) !important;
    color: var(--funori-white) !important;
    border-color: var(--funori-anthracite) !important;
}

body.theme-funori .product-card {
    background: var(--funori-white) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    transition: var(--transition);
    overflow: visible !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
}

body.theme-funori .product-card .product-image-wrapper {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--funori-grey) !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

body.theme-funori .product-card .product-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.theme-funori .products-section .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

body.theme-funori .products-section .row > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
    display: block !important;
}

body.theme-funori .products-section .row > [class*="col-lg-4"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

body.theme-funori .products-section .row > [class*="col-lg-8"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

body.theme-funori .products-section .row > [class*="col-lg-4"],
body.theme-funori .products-section .row > [class*="col-md-4"] {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
}

/* Mobile: 2 columns instead of 3 */
@media (max-width: 767.98px) {
    body.theme-funori .products-section .row > [class*="col-6"],
    body.theme-funori .products-grid .row > [class*="col-6"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    body.theme-funori .products-section .row > [class*="col-md-4"],
    body.theme-funori .products-grid .row > [class*="col-md-4"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

body.theme-funori .products-section .row > [class*="col-"] > .product-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.theme-funori .product-card .card-body {
    padding: 0.75rem 1rem !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
}

body.theme-funori .product-card .card-title a,
body.theme-funori .product-card h6 a {
    color: var(--funori-anthracite) !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    line-height: 1.3 !important;
    margin-bottom: 0.4rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

body.theme-funori .product-card .card-title a:hover,
body.theme-funori .product-card h6 a:hover {
    color: var(--funori-anthracite-dark) !important;
}

body.theme-funori .product-card .product-description,
body.theme-funori .product-card .text-muted {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    color: var(--funori-text-light) !important;
    margin-bottom: 0.5rem !important;
    display: none !important;
}

body.theme-funori .price-display .price-current,
body.theme-funori .price-display span.price-current,
body.theme-funori .product-card .price-current,
body.theme-funori .product-card .current-price {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--funori-anthracite) !important;
    margin-bottom: 0.5rem !important;
}

body.theme-funori .price-display .price-old,
body.theme-funori .price-display span.price-old,
body.theme-funori .product-card .price-old,
body.theme-funori .product-card .old-price {
    font-size: 0.7rem !important;
    color: var(--funori-text-light) !important;
    text-decoration: line-through !important;
}

body.theme-funori .product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.1) !important;
    border-color: var(--funori-anthracite) !important;
}

body.theme-funori .product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--funori-grey);
    overflow: hidden;
}

body.theme-funori .product-image-wrapper img,
body.theme-funori .product-card .product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.theme-funori .product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

body.theme-funori .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
    pointer-events: none;
}

body.theme-funori .product-card:hover .product-overlay {
    opacity: 1;
}

body.theme-funori .product-overlay-content {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    position: relative;
    z-index: 11;
}

body.theme-funori .product-overlay-content .btn,
body.theme-funori .product-overlay-content .overlay-icon {
    background: var(--funori-white) !important;
    color: var(--funori-black) !important;
    border: none !important;
    border-radius: 0 !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    text-decoration: none !important;
}

body.theme-funori .product-overlay-content .overlay-icon i {
    font-size: 0.9rem !important;
}

body.theme-funori .product-overlay-content .btn:hover,
body.theme-funori .product-overlay-content .overlay-icon:hover {
    background: var(--funori-anthracite) !important;
    color: var(--funori-white) !important;
    transform: scale(1.1) !important;
}

body.theme-funori .product-card .card-body {
    padding: 1.5rem !important;
}

body.theme-funori .product-title {
    margin-bottom: 0.75rem !important;
}

body.theme-funori .product-title a {
    color: var(--funori-anthracite) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    transition: var(--transition);
}

body.theme-funori .product-title a:hover {
    color: var(--funori-anthracite-light) !important;
}

body.theme-funori .product-description {
    color: var(--funori-text-light) !important;
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
}

body.theme-funori .product-price {
    margin-bottom: 1rem !important;
}

body.theme-funori .current-price {
    color: var(--funori-anthracite) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
}

body.theme-funori .old-price {
    color: var(--funori-text-light) !important;
    text-decoration: line-through !important;
    font-size: 1rem !important;
    margin-left: 0.5rem !important;
}

body.theme-funori .badge {
    background-color: var(--funori-anthracite) !important;
    color: var(--funori-white) !important;
    border-radius: 0 !important;
    padding: 0.5rem 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 0.75rem !important;
}

/* Responsive */
@media (max-width: 992px) {
    body.theme-funori .category-hero h1 {
        font-size: 2.25rem !important;
    }
    
    body.theme-funori .filters-sidebar {
        position: static !important;
        margin-bottom: 2rem !important;
        max-height: none !important;
        margin-left: 0 !important;
    }
    
    body.theme-funori .product-card {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    body.theme-funori .product-card .product-image-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }
    
    body.theme-funori .product-card .product-image-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }
}

/* Ana sayfa ürün görselleri için boyut sınırlaması - 334x334 kare */
body.theme-funori .homepage-section-wrapper .product-card .product-image-wrapper,
body.theme-funori .homepage-section-wrapper .funori-product-image-wrapper {
    width: 334px !important;
    height: 334px !important;
    max-width: 334px !important;
    max-height: 334px !important;
    min-width: 334px !important;
    min-height: 334px !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    padding-top: 0 !important;
    margin: 0 auto !important;
}

body.theme-funori .homepage-section-wrapper .product-card .product-image-wrapper img,
body.theme-funori .homepage-section-wrapper .funori-product-image-wrapper .funori-product-image {
    width: 334px !important;
    height: 334px !important;
    max-width: 334px !important;
    max-height: 334px !important;
    object-fit: cover !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

@media (max-width: 768px) {
    body.theme-funori .homepage-section-wrapper .product-card .product-image-wrapper,
    body.theme-funori .homepage-section-wrapper .funori-product-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        padding-top: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
    }
    
    body.theme-funori .homepage-section-wrapper .product-card .product-image-wrapper img,
    body.theme-funori .homepage-section-wrapper .funori-product-image-wrapper .funori-product-image {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    body.theme-funori .category-hero {
        min-height: 250px !important;
        padding: 3rem 0 !important;
    }
    
    body.theme-funori .category-hero h1 {
        font-size: 1.75rem !important;
    }
    
    body.theme-funori .subcategories-section {
        padding: 2rem 0 !important;
    }
    
    body.theme-funori .products-section {
        padding: 3rem 0 !important;
    }
}

/* Category Banner - Funori Theme */
body.theme-funori .funori-category-banner {
    margin-bottom: 4rem;
}

body.theme-funori .funori-category-banner-image {
    position: relative !important;
    width: 100% !important;
    min-height: 500px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body.theme-funori .funori-category-banner-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 1 !important;
}

body.theme-funori .funori-category-banner .container {
    position: relative !important;
    z-index: 2 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

body.theme-funori .funori-category-banner .row {
    height: 100% !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
}

body.theme-funori .funori-category-banner .col-12 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

body.theme-funori .funori-category-banner-content {
    text-align: center !important;
    color: var(--funori-white) !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.theme-funori .funori-category-banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--funori-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

body.theme-funori .funori-category-banner-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

body.theme-funori .funori-category-banner-count {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

body.theme-funori .funori-category-banner-count strong {
    font-weight: 700;
}

/* Category Icons in Banner */
body.theme-funori .funori-banner-categories {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

body.theme-funori .funori-banner-category-item {
    text-decoration: none !important;
    color: var(--funori-white) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

body.theme-funori .funori-banner-category-item:hover {
    transform: translateY(-5px);
    color: var(--funori-white) !important;
}

body.theme-funori .funori-banner-category-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

body.theme-funori .funori-banner-category-item:hover .funori-banner-category-icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

body.theme-funori .funori-banner-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

body.theme-funori .funori-banner-category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--funori-white);
    font-size: 2.5rem;
}

body.theme-funori .funori-banner-category-name {
    color: var(--funori-white) !important;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Banner Categories */
@media (max-width: 768px) {
    body.theme-funori .funori-banner-category-icon {
        width: 80px;
        height: 80px;
    }
    
    body.theme-funori .funori-banner-category-placeholder {
        font-size: 1.75rem;
    }
    
    body.theme-funori .funori-banner-category-name {
        font-size: 0.75rem;
    }
    
    body.theme-funori .funori-banner-categories .row {
        gap: 1rem !important;
    }
}

/* Category Slider - Left Sidebar */
body.theme-funori .funori-category-slider-wrapper {
    background: var(--funori-white);
    border: 1px solid #e0e0e0;
    padding: 0;
    margin-bottom: 2rem;
    position: sticky;
    top: 120px;
}

body.theme-funori .funori-category-slider-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-height: 400px;
    max-height: 600px;
    object-position: center;
}

body.theme-funori .funori-category-slider-wrapper .carousel-control-prev,
body.theme-funori .funori-category-slider-wrapper .carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
}

body.theme-funori .funori-category-slider-wrapper .carousel-control-prev {
    left: 1rem;
}

body.theme-funori .funori-category-slider-wrapper .carousel-control-next {
    right: 1rem;
}

body.theme-funori .funori-category-slider-wrapper .carousel-control-prev:hover,
body.theme-funori .funori-category-slider-wrapper .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--funori-anthracite);
}

/* Contact Page Styles */
.contact-form-wrapper {
    background: var(--funori-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    color: var(--funori-anthracite);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info-card {
    box-shadow: var(--shadow-md);
    border: none;
}

.contact-info-card .card-title {
    color: var(--funori-anthracite);
    font-weight: 600;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--funori-grey);
    padding-bottom: 1rem;
}

.contact-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--funori-grey);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 1.1rem;
    width: 24px;
}

.contact-item strong {
    color: var(--funori-anthracite);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--funori-text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--funori-anthracite);
    text-decoration: underline;
}

.map-wrapper {
    border: none;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: var(--funori-grey);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .map-container {
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio on mobile */
    }
}

body.theme-funori .funori-category-slider-wrapper .carousel-control-prev-icon,
body.theme-funori .funori-category-slider-wrapper .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Category Banner */
@media (max-width: 992px) {
    body.theme-funori .funori-category-banner-title {
        font-size: 3rem;
    }
    
    body.theme-funori .funori-category-banner-image {
        min-height: 400px;
    }
    
    body.theme-funori .funori-category-slider-wrapper {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    body.theme-funori .funori-category-banner {
        margin-bottom: 3rem;
    }
    
    body.theme-funori .funori-category-banner-image {
        min-height: 300px;
    }
    
    body.theme-funori .funori-category-banner-title {
        font-size: 2rem;
    }
    
    body.theme-funori .funori-category-banner-description {
        font-size: 1rem;
    }
    
    body.theme-funori .funori-category-slider-image {
        min-height: 300px;
        max-height: 400px;
    }
}

