
/* ===================================
   CSS Variables
   =================================== */
:root {
    /* Premium Color Palette */
    --primary-color: #6B1B6F;
    --primary-dark: #4A1250;
    --primary-light: #8B2B8F;
    --accent-color: #D946EF;
    --accent-light: #F0ABFC;
    --secondary-color: #F9FAFB;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-white: #ffffff;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --info-color: #3B82F6;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #6B1B6F 0%, #8B2B8F 100%);
    --gradient-accent: linear-gradient(135deg, #D946EF 0%, #F0ABFC 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 20px rgba(107, 27, 111, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Visually Hidden Class for Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--text-white);
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.g-4 {
    margin: 0 -15px;
}

.g-4 > * {
    padding: 15px;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background: var(--primary-color);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-white);
}

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

.top-bar-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-center {
    flex: 1;
    text-align: center;
    color: var(--text-white);
    font-size: 13px;
}

.top-bar-center strong {
    font-weight: 600;
    color: #FFD700;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar a {
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar .social-icon {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.top-bar .social-icon:hover {
    background: rgba(255,255,255,0.2);
}

.top-bar i {
    font-size: 12px;
}

/* ===================================
   Notification Bar
   =================================== */
.notification-bar {
    background: var(--primary-color);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.notification-scroll {
    height: 45px;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 8%, rgba(0,0,0,1) 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 8%, rgba(0,0,0,1) 92%, transparent 100%);
}

.scroll-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 12px 0;
    animation: smoothScroll 30s linear infinite;
    will-change: transform;
}

@keyframes smoothScroll {
    0% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(-50%);
    }
}

.scroll-item {
    display: inline-block;
    color: var(--text-white);
    font-size: 12px;
    padding: 0 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.separator {
    display: inline-block;
    margin: 0 30px;
    font-size: 12px;
    opacity: 0.5;
    color: var(--text-white);
}

/* ===================================
   Announcement Banner
   =================================== */
.announcement-banner {
    background: #FFF5F9;
    padding: 12px 0;
    overflow: hidden;
    border-bottom: 1px solid #FFE0ED;
}

.announcement-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollAnnouncement 40s linear infinite;
    will-change: transform;
}

@keyframes scrollAnnouncement {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    padding: 0 25px;
    white-space: nowrap;
    position: relative;
}

.announcement-item::after {
    content: '|';
    position: absolute;
    right: 0;
    color: #F8BBD0;
    font-weight: 300;
}

.announcement-item i {
    font-size: 15px;
    color: #E91E63;
}

.highlight-badge {
    background: linear-gradient(135deg, #F48FB1, #ff7eaa);
    color: var(--text-white);
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(233, 30, 99, 0.1);
}

/* ===================================
   Header
   =================================== */
.header {
    background: var(--text-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.mobile-menu-btn {
    font-size: 24px;
    color: var(--primary-color);
    padding: 5px;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    text-decoration: none;
    display: block;
}

/* Logo Text Styling */
.logo-text {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Legacy h1 support */
.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

/* Large Search Bar */
.search-bar-large {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-bar-large .search-input {
    width: 100%;
    padding: 11px 50px 11px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    outline: none;
    font-size: 14px;
    font-family: var(--font-family);
    transition: var(--transition);
    background: #F9FAFB;
}

.search-bar-large .search-input:focus {
    border-color: var(--primary-color);
    background: var(--text-white);
    box-shadow: 0 0 0 3px rgba(107, 27, 111, 0.05);
}

.search-bar-large .search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: transparent;
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.search-bar-large .search-btn:hover {
    color: var(--primary-color);
    background: rgba(107, 27, 111, 0.05);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 6px 20px;
    font-size: 11px;
    color: var(--text-light);
}

.search-bar-mobile {
    padding: 10px 0;
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
    margin-top: 10px;
}

.search-bar-mobile .search-input {
    flex: 1;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-bar-mobile .search-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--text-white);
}

.header-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-dark);
    font-size: 10px;
    position: relative;
    padding: 6px 10px;
    transition: var(--transition-fast);
    border-radius: 8px;
}

.header-icon i {
    font-size: 22px;
}

.header-icon span {
    font-weight: 500;
}

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

/* Icon Colors */
.user-icon i {
    color: #3B82F6;
}

.user-icon:hover i {
    color: #2563EB;
}

.payment-icon i {
    color: #10B981;
}

.payment-icon:hover i {
    color: #059669;
}

.favorite-icon i {
    color: #EF4444;
}

.favorite-icon:hover i {
    color: #DC2626;
}

.cart-icon i {
    color: var(--primary-color);
}

.cart-icon:hover i {
    color: var(--primary-dark);
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ===================================
   Desktop Navigation
   =================================== */
.desktop-nav {
    border-top: 1px solid var(--border-color);
    padding: 0;
    background: var(--text-white);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-link i {
    font-size: 18px;
}

.nav-link span {
    text-transform: uppercase;
}

/* Özel Günler Menüsü - Minimal Yanıp Sönen Efekt */
.special-days-link {
    position: relative;
    background: linear-gradient(135deg, #FF1744 0%, #F50057 100%);
    border-radius: 6px;
    padding: 8px 12px !important;
    animation: pulseGlow 2s ease-in-out infinite;
}

.special-days-link span {
    color: var(--text-white) !important;
    font-weight: 600;
    font-size: 11px;
}

.special-days-link i {
    color: #FFD700 !important;
    font-size: 14px;
    animation: starRotate 3s linear infinite;
}

.special-days-link:hover {
    background: linear-gradient(135deg, #F50057 0%, #FF1744 100%);
    transform: scale(1.02);
    box-shadow: 0 2px 12px rgba(255, 23, 68, 0.3);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 23, 68, 0.4),
                    0 0 10px rgba(255, 23, 68, 0.2);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 23, 68, 0.6),
                    0 0 15px rgba(255, 23, 68, 0.4);
    }
}

@keyframes starRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.special-days-menu .dropdown-menu {
    min-width: 220px;
}

.special-days-menu .dropdown-menu a {
    font-size: 13px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.special-days-menu .dropdown-menu a:hover {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE5EC 100%);
    color: #FF1744;
    border-left-color: #FF1744;
}

/* Premium Link */
.nav-premium {
    padding: 8px 0;
}

.premium-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    transition: var(--transition);
}

.premium-link:hover {
    background: rgba(107, 27, 111, 0.05);
}

.premium-link i {
    font-size: 24px;
    color: var(--primary-color);
}

.premium-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.premium-text strong {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.premium-text span {
    font-size: 11px;
    color: var(--text-light);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 24px;
}

/* Mega Menu Styles */
.mega-menu .mega-dropdown {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 800px;
    max-width: 1000px;
    padding: 30px;
}

.mega-menu:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-menu-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-column a {
    display: block;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition-fast);
}

.mega-menu-column a:hover {
    color: var(--primary-color);
    padding-left: 10px;
    background: transparent;
}

.mega-menu-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mega-menu-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.mega-menu-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.mega-menu-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===================================
   Mobile Menu
   =================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--text-white);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

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

.mobile-menu-header h2 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
}

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

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

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

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: var(--text-dark);
    font-size: 15px;
    position: relative;
    cursor: pointer;
}

.mobile-menu-link span {
    flex: 1;
}

.mobile-menu-link .submenu-toggle {
    font-size: 16px;
    transition: var(--transition);
}

.mobile-menu-item.active .submenu-toggle {
    transform: rotate(180deg);
}

.mobile-menu-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.mobile-menu-link > i:first-child {
    font-size: 18px;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: var(--secondary-color);
    transition: max-height 0.3s ease;
}

.mobile-menu-item.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px 12px 50px;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-submenu a:hover {
    background: var(--text-white);
    color: var(--primary-color);
    padding-left: 55px;
}

/* Özel Günler Mobil Menü */
.special-days-mobile .mobile-menu-link {
    background: linear-gradient(135deg, #FF1744 0%, #F50057 100%);
    color: var(--text-white);
    animation: pulseMobile 2s ease-in-out infinite;
}

.special-days-mobile .mobile-menu-link i:first-child {
    color: #FFD700;
    animation: starRotate 3s linear infinite;
}

.special-days-mobile .mobile-menu-link span {
    color: var(--text-white);
    font-weight: 700;
}

.special-days-mobile .mobile-menu-link .submenu-toggle {
    color: var(--text-white);
}

@keyframes pulseMobile {
    0%, 100% {
        box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

.special-days-mobile .mobile-submenu {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE5EC 100%);
}

.special-days-mobile .mobile-submenu a {
    color: #FF1744;
    font-weight: 500;
}

.special-days-mobile .mobile-submenu a:hover {
    background: var(--text-white);
    color: #F50057;
}

/* ===================================
   Mobile Bottom Menu
   =================================== */
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 999;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.bottom-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-dark);
    font-size: 10px;
    padding: 5px 10px;
    flex: 1;
    max-width: 80px;
}

.bottom-menu-item i {
    font-size: 20px;
}

.bottom-menu-item:hover {
    color: var(--primary-color);
}

/* ===================================
   Delivery Info Section
   =================================== */
.delivery-info {
    padding: 30px 0;
    background: #fafafa;
}

.delivery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.delivery-location-card {
    background: var(--text-white);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.delivery-location-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.location-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(107, 27, 111, 0.2);
}

.location-icon-circle i {
    font-size: 28px;
    color: var(--text-white);
}

.delivery-location-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    font-weight: 400;
    line-height: 1.3;
}

.delivery-location-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    z-index: 10;
}

.custom-select-trigger {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 11;
}

.custom-select-trigger:hover {
    box-shadow: 0 0 0 3px rgba(107, 27, 111, 0.1);
}

.custom-select-trigger > i:first-child {
    color: var(--primary-color);
    font-size: 18px;
}

.custom-select-trigger > span {
    flex: 1;
}

.custom-select-trigger > i:last-child {
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.custom-select-wrapper.active .custom-select-trigger > i:last-child {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #7B2D7E 0%, #9B4D9F 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(107, 27, 111, 0.3);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-select-wrapper.active .custom-select-options {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.custom-option {
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-option:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.custom-option:last-child {
    border-bottom: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.custom-option:hover {
    background: rgba(255, 255, 255, 0.15);
}

.custom-option.selected {
    background: rgba(107, 27, 111, 0.4);
}

.option-name {
    font-size: 14px;
    font-weight: 500;
}

.option-price {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

/* Scrollbar for options */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Delivery location card z-index fix */
.delivery-location-card {
    position: relative;
    z-index: 10;
}

.delivery-features-single {
    position: relative;
    z-index: 1;
}

.delivery-features-single {
    background: var(--text-white);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: var(--transition);
}

.delivery-features-single:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-item-inline {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.feature-icon-inline {
    width: 50px;
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.feature-icon-inline i {
    font-size: 40px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-item-inline:hover .feature-icon-inline i {
    transform: scale(1.1);
}

.feature-text-inline h4 {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0 0 2px 0;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.feature-text-inline p {
    font-size: 11px;
    color: #6c757d;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-divider {
    width: 1px;
    height: 60px;
    background: #e9ecef;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .delivery-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .delivery-location-card,
    .delivery-features-single {
        padding: 30px;
    }
    
    .delivery-features-single {
        flex-wrap: wrap;
    }
    
    .feature-item-inline {
        flex: 0 0 calc(50% - 10px);
    }
    
    .feature-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .delivery-info {
        padding: 30px 0;
    }
    
    .delivery-location-card,
    .delivery-features-single {
        padding: 25px 20px;
    }
    
    .location-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .location-icon-circle i {
        font-size: 28px;
    }
    
    .delivery-location-card h3 {
        font-size: 20px;
    }
    
    .delivery-location-card p {
        font-size: 14px;
    }
    
    .feature-icon-inline {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-inline i {
        font-size: 36px;
    }
    
    .feature-text-inline h4 {
        font-size: 12px;
    }
    
    .feature-text-inline p {
        font-size: 10px;
    }
}

/* ===================================
   Category Icons
   =================================== */
.category-icons {
    padding: 40px 0;
    background: var(--text-white);
}

/* Tasarım Seçenekleri - Yuvarlak (Circle) */
.category-icons[data-style="circle"] .category-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

/* Tasarım Seçenekleri - Kare (Square) */
.category-icons[data-style="square"] .category-icon {
    width: 140px;
    height: 140px;
    border-radius: 12px;
}

/* Tasarım Seçenekleri - Dikdörtgen (Rectangle) - Varsayılan */
.category-icons[data-style="rectangle"] .category-icon {
    width: 180px;
    height: 120px;
    border-radius: 16px;
}

/* Tasarım Seçenekleri - Geniş Dikdörtgen (Wide Rectangle) */
.category-icons[data-style="wide"] .category-icon {
    width: 200px;
    height: 100px;
    border-radius: 20px;
}

/* Tasarım Seçenekleri - Yuvarlak Köşeli Kare (Rounded Square) */
.category-icons[data-style="rounded-square"] .category-icon {
    width: 140px;
    height: 140px;
    border-radius: 24px;
}

.category-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.category-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.category-item:hover {
    transform: translateY(-8px);
}

.category-icon {
    width: 180px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.category-item:hover .category-icon::before {
    opacity: 1;
}

.category-item:hover .category-icon {
    border-color: var(--primary-color);
    box-shadow: 0 12px 28px rgba(107, 27, 111, 0.3);
    transform: scale(1.03);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon > div {
    position: relative;
    z-index: 2;
}

.category-item p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    transition: var(--transition);
}

.category-item:hover p {
    color: var(--primary-color);
}

.category-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--text-white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    z-index: 10;
    font-size: 18px;
    transition: var(--transition);
}

.category-nav:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.category-nav-prev {
    left: 0;
}

.category-nav-next {
    right: 0;
}

/* ===================================
   Hero Banner
   =================================== */
.hero-banner {
    position: relative;
    margin-bottom: 30px;
}

.desktop-slider,
.mobile-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide,
.mobile-slide {
    display: none;
    width: 100%;
}

.hero-slide.active,
.mobile-slide.active {
    display: block;
}

.hero-slide img,
.mobile-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.desktop-slider .hero-slide img {
    max-height: 500px;
}

.mobile-slider .mobile-slide img {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.indicator:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Slider Arrow Buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-arrow-prev {
        left: 10px;
    }
    
    .slider-arrow-next {
        right: 10px;
    }
}

/* ===================================
   Category Banners
   =================================== */
.category-banners {
    padding: 50px 0;
    background: var(--text-white);
    margin-top: 30px;
}

.category-banner-link {
    display: block;
    text-decoration: none;
}

.category-banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition);
    height: 280px;
}

.category-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.category-banner:hover img {
    transform: scale(1.02);
}

.position-relative {
    position: relative;
}

.w-100 {
    width: 100%;
}

.rounded {
    border-radius: 20px;
}

.script-font {
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    margin: 0 0 5px 0;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--primary-color);
}

.banner-text {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: 50px 0;
    background: var(--text-white);
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.product-card {
    background: var(--text-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--secondary-color);
}

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

.product-img-main {
    opacity: 1;
    z-index: 1;
}

.product-img-hover {
    opacity: 0;
    z-index: 2;
}

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

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

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.wishlist-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.wishlist-btn.active i {
    font-weight: 900;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.discount {
    background: #fff3cd;
    color: #856404;
}

.product-badge.bestseller {
    background: #d4edda;
    color: #155724;
}

.product-badge.opportunity {
    background: #d1ecf1;
    color: #0c5460;
}

.product-info {
    padding: 15px;
}

.product-category {
    font-size: 12px;
    color: var(--success-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.product-code {
    display: none;
}

.product-title {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.decimal {
    font-size: 14px;
}

.btn-send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(107, 27, 111, 0.2);
}

.btn-send:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 27, 111, 0.3);
}

/* ===================================
   Info Section
   =================================== */
.info-section {
    padding: 60px 0;
    background: var(--secondary-color);
}

.info-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-content .lead {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 22px;
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.info-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 465px;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.info-badge .number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.info-badge .text {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 5px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #f5f5f5;
    color: #666;
    padding: 40px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 25px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-logo h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    transition: var(--transition-fast);
}

.contact-item:hover {
    color: #333;
}

.contact-item i {
    color: #666;
    font-size: 16px;
    width: 20px;
}

.contact-item a {
    color: #666;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #666;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-col ul li a::before {
    content: '›';
    opacity: 0;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

.whatsapp-box {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.whatsapp-box p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 20px;
    background: #25D366;
    color: var(--text-white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn i {
    font-size: 22px;
}

.support-hours {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: #666;
}

.support-hours i {
    font-size: 14px;
    color: #666;
    margin-top: 1px;
}

.hours-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 1px;
}

.hours-time {
    display: block;
    color: #666;
    font-size: 11px;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom .social-links {
    margin: 0;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-copyright {
    flex: 0 0 auto;
    white-space: nowrap;
}

.footer-payment {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-signature {
    flex: 0 0 auto;
    white-space: nowrap;
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 32px;
}

.payment-methods i {
    color: #999;
    transition: var(--transition);
}

.payment-methods i:hover {
    color: #666;
    transform: scale(1.1);
}

.signature {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.istanbul-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.8px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #E30A17;
    box-shadow: 0 2px 6px rgba(227, 10, 23, 0.3);
    border: 2px solid #E30A17;
    transition: all 0.3s ease;
}

.istanbul-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 10, 23, 0.4);
}

.logo-red {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.logo-white {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 8px;
}

.logo-white::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 16px;
    background: rgba(255, 255, 255, 0.4);
}

.signature i {
    color: #e91e63;
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
    margin: 0 3px;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
}

/* ===================================
   Sticky Sidebar
   =================================== */
.sticky-sidebar {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 999;
}

.sidebar-icon {
    width: 50px;
    height: 50px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
    border: 2px solid #f0f0f0;
    margin: 5px 0;
}

/* Icon colors */
.sidebar-icon:nth-child(1) {
    color: #FF6B6B;
}

.sidebar-icon:nth-child(2) {
    color: #E1306C;
}

.sidebar-icon:nth-child(3) {
    color: #4CAF50;
}

.sidebar-icon:nth-child(4) {
    color: #25D366;
}

.sidebar-icon:nth-child(5) {
    color: #2196F3;
}

.sidebar-icon:hover {
    transform: scale(1.15) translateX(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.sidebar-icon:nth-child(1):hover {
    background: #FF6B6B;
    color: var(--text-white);
    border-color: #FF6B6B;
}

.sidebar-icon:nth-child(2):hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
    color: var(--text-white);
    border-color: #E1306C;
}

.sidebar-icon:nth-child(3):hover {
    background: #4CAF50;
    color: var(--text-white);
    border-color: #4CAF50;
}

.sidebar-icon:nth-child(4):hover {
    background: #25D366;
    color: var(--text-white);
    border-color: #25D366;
}

.sidebar-icon:nth-child(5):hover {
    background: #2196F3;
    color: var(--text-white);
    border-color: #2196F3;
}

/* Tooltip */
.sidebar-icon::before {
    content: attr(title);
    position: absolute;
    right: 70px;
    background: #333;
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sidebar-icon::after {
    content: '';
    position: absolute;
    right: 60px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.sidebar-icon:hover::before,
.sidebar-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Scroll to Top
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
    
    .category-nav {
        display: none;
    }
}

@media (max-width: 991px) {
    .top-bar-center {
        display: none;
    }
    
    .header-main {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .header-icons {
        gap: 4px;
    }
    
    .header-icon {
        padding: 5px 8px;
    }
    
    .header-icon span {
        display: none;
    }
    
    .header-icon i {
        font-size: 24px;
    }
    
    .category-slider-wrapper {
        padding: 0 50px;
    }
    
    /* Responsive - Circle */
    .category-icons[data-style="circle"] .category-icon {
        width: 110px;
        height: 110px;
    }
    
    /* Responsive - Square */
    .category-icons[data-style="square"] .category-icon {
        width: 110px;
        height: 110px;
    }
    
    /* Responsive - Rectangle */
    .category-icons[data-style="rectangle"] .category-icon {
        width: 150px;
        height: 100px;
    }
    
    /* Responsive - Wide */
    .category-icons[data-style="wide"] .category-icon {
        width: 170px;
        height: 85px;
    }
    
    /* Responsive - Rounded Square */
    .category-icons[data-style="rounded-square"] .category-icon {
        width: 110px;
        height: 110px;
    }
    
    .category-item p {
        font-size: 13px;
    }
    
    .category-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .banner-content {
        left: 20px;
    }
    
    .script-font {
        font-size: 18px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .banner-text {
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 14px;
        min-height: auto;
    }
    
    .current-price {
        font-size: 18px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .info-image {
        height: 300px;
        margin-top: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sticky-sidebar {
        display: none;
    }
    
    .scroll-to-top {
        bottom: 70px;
        right: 15px;
    }
}

@media (max-width: 767px) {
    .notification-scroll {
        height: 32px;
    }
    
    .scroll-item {
        font-size: 10px;
    }
    
    .flower-icon {
        font-size: 14px;
    }
    
    .header-icon i {
        font-size: 20px;
    }
    
    .cart-badge {
        top: -5px;
        right: 0;
    }
    
    .category-icons {
        padding: 20px 0;
    }
    
    .category-banner {
        height: 200px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-category {
        font-size: 10px;
    }
    
    .product-code {
        font-size: 10px;
    }
    
    .product-title {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .old-price {
        font-size: 12px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .decimal {
        font-size: 12px;
    }
    
    .btn-send {
        padding: 10px;
        font-size: 12px;
    }
    
    .wishlist-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .product-badge {
        font-size: 9px;
        padding: 4px 8px;
    }
    
    .info-section {
        padding: 40px 0;
    }
    
    .info-content h2 {
        font-size: 24px;
    }
    
    .info-content .lead {
        font-size: 14px;
    }
    
    .feature-box {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .feature-content h5 {
        font-size: 14px;
    }
    
    .feature-content p {
        font-size: 12px;
    }
    
    .footer {
        padding: 30px 0 90px;
    }
    
    .footer-grid {
        padding: 0 10px;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        padding: 0 10px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright,
    .footer-payment,
    .footer-signature {
        width: 100%;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom .col-md-4 {
        max-width: 100%;
    }
    
    .payment-methods {
        font-size: 24px;
    }
    
    .istanbul-logo {
        font-size: 11px;
        padding: 5px 10px;
        gap: 3px;
    }
    
    .logo-white::before {
        height: 14px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }
    
    .category-slider-wrapper {
        padding: 0 40px;
    }
    
    /* Mobile Responsive - Circle */
    .category-icons[data-style="circle"] .category-icon {
        width: 90px;
        height: 90px;
    }
    
    /* Mobile Responsive - Square */
    .category-icons[data-style="square"] .category-icon {
        width: 90px;
        height: 90px;
    }
    
    /* Mobile Responsive - Rectangle */
    .category-icons[data-style="rectangle"] .category-icon {
        width: 130px;
        height: 90px;
    }
    
    /* Mobile Responsive - Wide */
    .category-icons[data-style="wide"] .category-icon {
        width: 140px;
        height: 70px;
    }
    
    /* Mobile Responsive - Rounded Square */
    .category-icons[data-style="rounded-square"] .category-icon {
        width: 90px;
        height: 90px;
    }
    
    .category-item p {
        font-size: 11px;
    }
    
    .category-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .banner-content {
        left: 15px;
    }
    
    .script-font {
        font-size: 16px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .btn-primary {
        padding: 8px 20px;
        font-size: 11px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .info-content h2 {
        font-size: 20px;
    }
}

/* ===================================
   Promotional Banners
   =================================== */
.promo-banners {
    padding: 50px 0;
    background: var(--text-white);
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.promo-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    transition: var(--transition);
    background: transparent;
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.banner-pink,
.banner-red,
.banner-purple,
.banner-orange {
    background: transparent;
}

.promo-banner .banner-content {
    display: none;
}

.promo-banner .banner-content h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    font-weight: 400;
}

.promo-banner .banner-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    font-weight: 800;
    line-height: 1.2;
}

.banner-red .banner-content h2,
.banner-purple .banner-content h2 {
    color: var(--text-white);
}

.banner-red .banner-content h3,
.banner-purple .banner-content h3 {
    color: rgba(255, 255, 255, 0.9);
}

.promo-banner .banner-content p {
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.banner-red .banner-content p,
.banner-purple .banner-content p {
    color: var(--text-white);
}

.banner-pink .banner-content p,
.banner-orange .banner-content p {
    color: var(--text-dark);
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.banner-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.banner-red .banner-features span,
.banner-purple .banner-features span {
    color: var(--text-white);
}

.banner-features i {
    font-size: 16px;
}

.banner-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.banner-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 27, 111, 0.3);
}

.banner-btn-white {
    display: inline-block;
    padding: 12px 28px;
    background: var(--text-white);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.banner-btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.banner-btn-dark {
    display: inline-block;
    padding: 12px 28px;
    background: var(--text-dark);
    color: var(--text-white);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.banner-btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-banner {
        height: 280px;
        padding: 30px;
    }
    
    .promo-banner .banner-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .promo-banner {
        height: 250px;
        padding: 25px;
    }
    
    .promo-banner .banner-content h2 {
        font-size: 24px;
    }
    
    .banner-image {
        width: 40%;
        opacity: 0.7;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .mobile-menu,
    .mobile-bottom-menu,
    .sticky-sidebar,
    .scroll-to-top,
    .notification-bar,
    .top-bar {
        display: none !important;
    }
    
    .product-card {
        break-inside: avoid;
    }
}

/* ===================================
   Category Page Styles
   =================================== */

/* Breadcrumb */
.breadcrumb-section {
    padding: 20px 0;
    background: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background: transparent;
}

.breadcrumb-item {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 8px;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Category Header */
.category-header {
    padding: 25px 0;
    background: var(--text-white);
    border-bottom: 1px solid var(--border-color);
}

.category-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.category-title {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.category-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.category-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dark);
}

.stat-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.stat-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Category Filters */
.category-filters {
    padding: 20px 0 40px;
    background: var(--text-white);
}

/* Top Filter Bar - New Design */
.top-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 30px;
}

.filter-left {
    flex: 0 0 auto;
}

.filter-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.filter-category-title i {
    color: var(--primary-color);
    font-size: 20px;
}

.filter-center {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.price-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 3px;
    line-height: 1;
    height: 11px;
}

.price-input-inline {
    width: 130px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    color: #333;
    transition: all 0.2s ease;
    height: 42px;
    box-sizing: border-box;
}

.price-input-inline::placeholder {
    color: #999;
    font-weight: 400;
}

.price-input-inline:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(107, 27, 111, 0.1);
}

.filter-btn-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 42px;
    margin-top: 15px;
    box-sizing: border-box;
}

.filter-btn-inline:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(107, 27, 111, 0.2);
}

.filter-btn-inline i {
    font-size: 14px;
}

.filter-right {
    flex: 0 0 auto;
}

.sort-select-inline {
    min-width: 200px;
    padding: 10px 35px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    color: #333;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.sort-select-inline:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(107, 27, 111, 0.1);
}

.sort-select-inline option {
    padding: 8px;
    background: white;
    color: #333;
}

/* Price Filter */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

.price-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 27, 111, 0.1);
}

.price-inputs span {
    color: var(--text-light);
    font-weight: 500;
}

.price-range-slider {
    position: relative;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
}

.price-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border: 2px solid var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.price-range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border: 2px solid var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Color Options */
.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option {
    cursor: pointer;
    position: relative;
}

.color-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: var(--transition-fast);
    border: 3px solid transparent;
}

.color-option:hover .color-dot {
    transform: scale(1.1);
}

.color-option input[type="checkbox"]:checked + .color-dot {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--text-white), 0 0 0 4px var(--primary-color);
}

/* Filter Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition-fast);
    user-select: none;
}

.filter-checkbox:hover {
    background: var(--secondary-color);
}

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

.filter-checkbox span {
    font-size: 13px;
    color: var(--text-dark);
}

/* Products Container */
.products-container {
    width: 100%;
}

/* Apply Filters Button */
.apply-filters {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.apply-filters:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Products Area */
.products-area {
    flex: 1;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    margin-bottom: 25px;
}

.results-count {
    font-size: 14px;
    color: var(--text-dark);
}

.results-count strong {
    color: var(--primary-color);
    font-weight: 600;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.sort-select {
    padding: 8px 35px 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--text-white);
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B1B6F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.sort-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 27, 111, 0.1);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.page-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Category Info Section */
.category-info-section {
    padding: 60px 0;
    background: var(--secondary-color);
}

.category-info-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    font-weight: 700;
}

.category-info-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.category-info-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.category-info-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.category-info-content ul li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    padding: 8px 0 8px 30px;
    position: relative;
}

.category-info-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.category-info-content ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .top-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }
    
    .filter-left {
        margin-bottom: 12px;
    }
    
    .filter-category-title {
        font-size: 16px;
        justify-content: center;
    }
    
    .filter-center {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .price-input-wrapper {
        width: 100%;
    }
    
    .price-input-inline,
    .filter-btn-inline {
        width: 100%;
    }
    
    .filter-right {
        width: 100%;
    }
    
    .sort-select-inline {
        width: 100%;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .category-description {
        font-size: 13px;
    }
    
    .category-stats {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section {
        padding: 15px 0;
    }
    
    .breadcrumb-item {
        font-size: 12px;
    }
    
    .category-header {
        padding: 20px 0;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .category-description {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .category-stats {
        gap: 12px;
    }
    
    .stat-item {
        font-size: 12px;
    }
    
    .stat-item i {
        font-size: 14px;
    }
    
    .top-filter-bar {
        padding: 12px;
    }
    
    .filter-category-title {
        font-size: 15px;
    }
    
    .filter-category-title i {
        font-size: 18px;
    }
    
    .price-label {
        font-size: 10px;
    }
    
    .filter-center {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-input-inline,
    .filter-btn-inline,
    .sort-select-inline {
        padding: 9px 10px;
        font-size: 13px;
    }
    
    .filter-btn-inline {
        justify-content: center;
    }
    
    .category-info-section {
        padding: 40px 0;
    }
    
    .category-info-content h2 {
        font-size: 22px;
    }
    
    .category-info-content h3 {
        font-size: 18px;
    }
    
    .category-info-content p,
    .category-info-content ul li {
        font-size: 14px;
    }
}