@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Kurumsal renkler: Dijital Ortam Kodu #592c86 + siyah ve beyaz */
:root {
    --primary-color: #592c86;
    --secondary-color: #4a2470;
    --accent-color: #6e3a9e;
    --text-color: #000000;
    --text-light: #333333;
    --bg-light: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar - Site Renklerine Uygun */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #592c86, #6e3a9e);
    border-radius: 10px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4a2470, #592c86);
    border-color: #e2e8f0;
}

::-webkit-scrollbar-thumb:active {
    background: #4a2470;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #592c86 #f1f5f9;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#main-content {
    flex: 1;
}

.container {
    width: min(1400px, 95%);
    margin: 0 auto;
    padding: 0 0.75rem;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.site-header.scrolled {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
    transition: transform var(--transition-base);
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.05);
}

.site-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

/* Admin-defined logo sizes override default max-height */
.site-logo[style*="width"] {
    max-width: none;
}

.site-logo[style*="height"] {
    max-height: none;
}

.logo a:hover .site-logo {
    transform: scale(1.05);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Mobile nav styles moved to main responsive section below */

.main-nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #592c86;
    transition: width var(--transition-base);
}

.main-nav a:hover {
    color: #592c86 !important;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
    color: #592c86 !important;
}

.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
    width: 100%;
    background: #592c86;
}

/* Nav dropdown (Products submenu) */
.main-nav .nav-has-dropdown {
    position: relative;
}
.main-nav .nav-has-dropdown > a {
    padding-bottom: 0.75rem;
}
.main-nav .nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    list-style: none;
    margin: -0.25rem 0 0 0;
    padding: 0.5rem 0;
    border: 1px solid #e5e7eb;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
}
.main-nav .nav-has-dropdown:hover .nav-dropdown {
    display: flex;
}
.main-nav .nav-dropdown li {
    margin: 0;
}
.main-nav .nav-dropdown a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
}
.main-nav .nav-dropdown a::after {
    display: none;
}
.main-nav .nav-dropdown a:hover {
    background: #f3eff8;
    color: #592c86 !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #000000;
    transition: all var(--transition-base);
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-search {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    width: 200px;
    transition: all var(--transition-fast);
    background: #ffffff;
    color: #000000;
}

.search-input::placeholder {
    color: #999999;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    width: 250px;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(89, 44, 134, 0.1);
}

.search-button {
    position: absolute;
    right: 0.25rem;
    background: transparent;
    color: #000000;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-button:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    transform: scale(1.1);
}

.cart-badge {
    display: inline-block;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

.header-phone {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition-fast);
}

.header-phone:hover {
    transform: translateY(-2px);
}

.header-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-link:hover {
    color: var(--primary-color);
}

.header-link i {
    font-size: 1.1rem;
}

/* Header Auth Buttons - Login & Register */
.header-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.header-login-btn {
    background: transparent;
    color: #000000;
    border: 1px solid var(--border-color);
}

.header-login-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header-login-btn:active {
    transform: scale(0.98);
}

.header-register-btn {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.header-register-btn:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
}

.header-register-btn:active {
    transform: scale(0.98);
}

.header-auth-btn i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.header-auth-btn span {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.language-switcher select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    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='%23592c86' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    padding-right: 2rem;
}

.language-switcher select:hover {
    border-color: #592c86;
    background-color: #ffffff;
    color: #592c86;
}

.language-switcher select:focus {
    outline: none;
    border-color: #592c86;
    box-shadow: 0 0 0 3px rgba(89, 44, 134, 0.15);
}

.language-switcher select option {
    background: #ffffff;
    color: #000000;
    font-weight: 500;
}

.cart-link {
    text-decoration: none;
    font-weight: 600;
    color: #000000;
    position: relative;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border-radius: 8px;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-link:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
}

.cart-link i {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-fullwidth {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    margin-top: 0 !important;
}

.hero-fullwidth .container {
    max-width: 100%;
    padding: 0;
}

.hero-fullwidth .hero-slider-wrapper {
    width: 100%;
    margin: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.hero-fullwidth .hero-slider {
    border-radius: 0;
    height: 850px;
    min-height: 850px;
    margin: 0;
    box-shadow: none;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFE5CC 100%);
}

.hero-fullwidth .hero-slide {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFE5CC 100%);
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 2rem auto;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    box-shadow: var(--shadow-xl);
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1);
}

.hero-slide:not(.active) .hero-slide-image {
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
    pointer-events: auto;
}

.hero-slide-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    z-index: 3;
    background: transparent;
}

.hero-slide-content.has-image {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 0;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: none;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-slide-content p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-hero {
    display: inline-block;
    padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(1.2rem, 3vw, 1.8rem);
    border-radius: 50px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(0.9);
    color: #ffffff;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 20;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: all;
    z-index: 20;
}

.slider-btn i {
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
    pointer-events: all;
}

.slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
    pointer-events: all;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: #ffffff;
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 600px;
        min-height: 600px;
    }
    
    .hero-fullwidth .hero-slider {
        height: 700px;
        min-height: 700px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
    
    .hero-slide-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-slide-content.has-image {
        padding: 2rem 1.5rem;
    }
}

/* Sections */
.section {
    padding: 2.5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Cards */
.category-grid,
.product-grid {
    display: grid;
    gap: 2rem;
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
    gap: 1.5rem;
}

.category-card,
.product-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #592c86;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: 2;
}

.product-card:hover::after {
    transform: scaleX(1);
}

.category-card {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(89, 44, 134, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.category-card:hover::before {
    opacity: 1;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(89, 44, 134, 0.04), rgba(110, 58, 158, 0.04));
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    border-radius: 20px;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.category-card h3,
.product-content h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.category-card p,
.product-content p {
    color: var(--text-light);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

/* Product Image Wrapper - Ürün görseli sabit boyut: kare (1:1), ana sayfa ile aynı */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
    background: #ffffff;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition-slow);
    background: var(--bg-light);
    display: block;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Product Action Buttons - New Style */
.product-action-buttons {
    display: flex;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    background: white;
    border-top: 1px solid var(--border-color);
}

.product-action-form {
    flex: 1;
    display: flex;
}

.product-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.625rem 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: white;
    color: #495057;
    white-space: nowrap;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.product-action-btn i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.product-action-btn span {
    display: inline-block;
    line-height: 1;
}

.product-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #adb5bd;
}

.product-action-btn-primary {
    background: linear-gradient(90deg, #592c86, #6e3a9e) !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: 0 2px 6px rgba(89, 44, 134, 0.3);
    font-weight: 700;
    min-width: 12.5rem;
}

.product-action-btn-primary:hover {
    background: linear-gradient(90deg, #4a2470, #6e3a9e) !important;
    box-shadow: 0 4px 12px rgba(89, 44, 134, 0.4);
    color: #000000 !important;
}

.product-compare-btn {
    background: white;
    color: #495057;
}

.product-compare-btn:hover {
    background: #f8f9fa;
    border-color: #592c86;
    color: #592c86;
}

/* Product Title */
.product-title {
    padding: 0.75rem 0.75rem 0.875rem 0.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .product-action-buttons {
        gap: 0.25rem;
        padding: 0.625rem;
    }

    .product-action-btn {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
        border-radius: 5px;
    }

    .product-action-btn span {
        display: none;
    }

    .product-action-btn-primary {
        min-width: 40px;
    }

    .product-action-btn i {
        font-size: 1rem;
    }
    
    .product-title {
        padding: 0.625rem;
        min-height: 3rem;
    }
    
    .product-title a {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .product-action-buttons {
        gap: 0.25rem;
        padding: 0.5rem;
    }

    .product-action-btn {
        padding: 0.5rem 0.25rem;
        min-width: 40px;
    }

    .product-action-btn-primary {
        min-width: 40px;
    }
    
    .product-title {
        min-height: 2.75rem;
    }
    
    .product-title a {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
}

/* Legacy styles for compatibility */
.product-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.product-image-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light), #e8e0f0);
    font-size: 3rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(89, 44, 134, 0.3);
}

/* Remove old product-actions if exists */
.product-actions {
    display: none;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 600;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.price-new {
    color: #592c86;
    font-size: 1.25rem;
    font-weight: 700;
}

.price-current {
    color: #592c86;
    font-size: 1.25rem;
    font-weight: 700;
}

.price-request {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.product-stock {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.product-stock.in-stock {
    background: rgba(89, 44, 134, 0.1);
    color: #592c86;
}

.product-stock.out-of-stock {
    background: rgba(89, 44, 134, 0.1);
    color: #592c86;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


.product-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.product-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-content h3 a:hover {
    color: var(--primary-color);
}

.product-actions {
    margin-top: auto;
}

/* Buttons */
.btn-outline,
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Footer */
/* Footer Logo Section */
.footer-logo-section {
    padding: 2rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    min-height: 150px;
}

.footer-logo-section[style*="background-image"] {
    position: relative;
}

.footer-logo-section[style*="background-image"] .container {
    position: relative;
    z-index: 1;
}

.footer-logo-section[style*="background-image"] .footer-logo-wrapper {
    position: relative;
    z-index: 1;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

/* Admin-defined footer logo sizes override default max-height */
.footer-logo[style*="width"] {
    max-width: none;
}

.footer-logo[style*="height"] {
    max-height: none;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.site-footer {
    background: #ffffff;
    color: var(--text-color);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 12px;
}

.footer-copy {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
}

/* Footer Services */
.footer-services {
    background: #ffffff;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-service-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.footer-service-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.footer-service-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Social Media Section */
.footer-social-section {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-social-icon i {
    font-size: 1.2rem;
}

/* Main Footer */
.footer-main {
    background: #ffffff;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 350px;
    gap: 3rem;
}

.footer-column h4 {
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.footer-column .footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-column .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-column .footer-social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-column .footer-social-icon i {
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.footer-contact-form {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer-contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-form-inner input {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.footer-contact-form-inner input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.phone-country {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    width: 120px;
    flex-shrink: 0;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.phone-country:focus {
    outline: none;
    border-color: var(--primary-color);
}

.phone-input-group input {
    flex: 1;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
    background: #ffffff;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-language-selector {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-lang-option:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.footer-lang-option.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 1024px) {
    .footer-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-contact-form {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-language-selector {
        justify-content: center;
    }
}

/* Forms */
.form-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(89, 44, 134, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    background-color: #fff5f5;
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.field-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Table Scrollbar (for mobile) */
.table::-webkit-scrollbar {
    height: 6px;
}

.table::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.table::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    border-radius: 3px;
}

.table::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #4a2470, #592c86);
}

.table th {
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
}

.table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover {
    background: var(--bg-light);
}

.btn-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.btn-link:hover {
    color: var(--accent-color);
}

.btn-danger {
    color: #592c86;
}

.btn-danger:hover {
    color: #4a2470;
}

/* Cart Summary */
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-light);
    max-width: 400px;
    margin-left: auto;
    box-shadow: var(--shadow-md);
}

/* Product Detail */
.product-detail {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 1rem;
}

.product-gallery img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.product-gallery img:hover {
    transform: scale(1.02);
}

.product-info h1 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.product-description {
    line-height: 1.8;
    color: var(--text-light);
    margin: 1.5rem 0;
}

.product-cart-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.product-cart-form label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 500;
}

.product-cart-form input[type="number"] {
    width: 100px;
    padding: 0.75rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    font-size: 1rem;
}

.product-spec {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}

.product-spec li {
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.product-spec strong {
    color: var(--primary-color);
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Alerts */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-success {
    background: rgba(89, 44, 134, 0.1);
    color: #592c86;
    border-color: #4a2470;
}

.alert-error {
    background: rgba(89, 44, 134, 0.1);
    color: #592c86;
    border-color: #4a2470;
}

/* Cards */
.page-content,
.auth-card,
.account-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card {
    max-width: 480px;
    margin: 3rem auto;
}

.account-card {
    max-width: 800px;
    margin: 2rem auto;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: white !important;
        border-bottom: 1px solid var(--border-color) !important;
        box-shadow: var(--shadow-lg) !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease !important;
        z-index: 9999 !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
        padding-top: 80px !important;
        pointer-events: none !important;
        will-change: transform, opacity;
        display: block !important;
        flex: none !important;
        justify-content: flex-start !important;
    }

    .main-nav.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        display: block !important;
    }
    
    /* Force menu visibility when active - multiple selectors for better compatibility */
    body .main-nav.active,
    html body .main-nav.active,
    #mainNav.active,
    nav.main-nav.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 1rem 0;
        color: var(--text-color) !important;
    }
    
    .main-nav a:hover {
        color: var(--primary-color) !important;
    }
    
    .main-nav a::after {
        display: none;
    }

    .main-nav .nav-has-dropdown {
        position: relative;
    }
    .main-nav .nav-dropdown {
        position: static;
        display: flex;
        flex-direction: column;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0 0 0 1rem;
        padding: 0 0 0.5rem 0;
        border-left: 2px solid #592c86;
    }
    .main-nav .nav-dropdown a {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 10001 !important;
        position: relative !important;
        pointer-events: all !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        background: transparent !important;
        border: none !important;
        padding: 0.5rem !important;
        width: 40px !important;
        height: 40px !important;
        flex-direction: column !important;
        gap: 4px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .mobile-menu-toggle span {
        background: #ffffff !important;
        pointer-events: none;
        width: 24px !important;
        height: 2px !important;
        display: block !important;
        border-radius: 2px !important;
    }
    
    .mobile-menu-toggle:active {
        opacity: 0.7;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
    }

    .header-actions {
        gap: 0.75rem;
    }

    .header-phone {
        display: none;
    }

    .header-search {
        display: none;
    }
    
    .site-header .container {
        position: relative;
    }

    .hero-slider {
        height: 500px;
    }

    .section {
        padding: 2rem 0;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }

    .site-header .container {
        padding: 1rem 0;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .logo a {
        font-size: 1.25rem;
    }
    
    .logo img {
        max-height: 40px;
    }

    .header-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .header-auth-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .header-auth-btn span {
        display: none;
    }
    
    .header-auth-btn i {
        margin: 0;
    }
    
    .cart-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .language-switcher select {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .hero-slider {
        height: 500px;
        min-height: 500px;
        border-radius: 16px;
        margin: 1rem auto;
    }

    .hero-fullwidth .hero-slider {
        height: 600px;
        min-height: 600px;
    }

    .hero-slide {
        padding: 1.5rem;
    }
    
    .hero-slide-content {
        padding: 1.5rem !important;
    }
    
    .hero-slide-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-slide-content p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .slider-indicator {
        width: 8px;
        height: 8px;
    }
    
    .slider-indicator.active {
        width: 24px;
    }

    .section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .product-card img {
        border-radius: 16px 16px 0 0;
    }
    
    /* Mobil için action button düzenlemeleri */
    .product-action-buttons {
        padding: 0.5rem;
        gap: 0.25rem;
    }
    
    .product-action-btn {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }

    .product-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-info h1 {
        font-size: 1.5rem;
    }
    
    .product-cart-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-cart-form label {
        width: 100%;
    }
    
    .product-cart-form input[type="number"] {
        width: 100%;
    }

    .cart-summary {
        max-width: 100%;
        margin-left: 0;
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Homepage Sections Mobile */
    .categories-icons-section {
        padding: 2rem 0;
    }
    
    .categories-icons-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        justify-content: stretch !important;
    }
    
    .category-icon-item {
        min-width: auto !important;
        padding: 0.75rem 0.5rem;
        width: 100%;
    }
    
    .category-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 0.75rem;
    }
    
    .category-icon {
        font-size: 1.5rem !important;
    }
    
    .category-icon-name {
        font-size: 0.875rem !important;
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .category-icon-count {
        font-size: 0.75rem !important;
        margin-top: 0.25rem;
    }
    
    .category-banners-section {
        padding: 2rem 0;
    }
    
    .category-banners-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1rem !important;
        height: auto !important;
    }
    
    .category-banners-grid-new {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(4, auto) !important;
        gap: 0.75rem !important;
        min-height: auto !important;
    }
    
    .category-banner-new {
        min-height: 270px !important;
    }
    
    .category-banner-new.banner-ceramic {
        grid-row: 1 !important;
        grid-column: 1 !important;
    }
    
    .category-banner-new.banner-right-vertical {
        grid-row: 2 !important;
        grid-column: 1 !important;
    }
    
    .category-banner-new.banner-bottom-left {
        grid-row: 3 !important;
        grid-column: 1 !important;
    }
    
    .category-banner-new.banner-bottom-right {
        grid-row: 4 !important;
        grid-column: 1 !important;
    }
    
    .category-banner {
        min-height: 250px;
        height: auto;
    }
    
    .category-banner.banner-large {
        grid-row: auto !important;
    }
    
    .category-banner-overlay {
        padding: 1.5rem;
    }
    
    .category-banner-new .category-banner-overlay {
        padding: 1.5rem;
    }
    
    .category-banner-overlay h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem;
    }
    
    .category-banner-overlay p {
        font-size: 0.875rem !important;
    }
    
    .shop-now-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-top: 0.5rem;
    }
    
    .category-icon-large {
        font-size: 3rem;
    }
    
    .products-tabs-section {
        padding: 2rem 0;
    }
    
    .products-tabs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .products-tabs-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-btn {
        flex: 1;
        min-width: calc(33.333% - 0.5rem);
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .products-tab-content {
        margin-top: 1.5rem;
    }
    
    .products-tab-content .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .best-selling-support-section {
        padding: 2rem 0;
    }
    
    .best-selling-support-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .support-section {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .support-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1.5rem;
    }
    
    .support-content h3 {
        font-size: 1.5rem;
    }
    
    .support-phone {
        font-size: 1.25rem;
    }
    
    .best-selling-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .best-selling-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .best-selling-item {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }
    
    .best-selling-image {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }
    
    .best-selling-info {
        flex: 1;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-services {
        padding: 2rem 0;
    }
    
    .footer-services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .footer-service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .footer-service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-social-section {
        padding: 1.5rem 0;
    }
    
    .footer-social-icons {
        gap: 0.75rem;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .footer-main {
        padding: 2rem 0;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-contact-form {
        padding: 1.5rem;
    }
    
    .phone-input-group {
        flex-direction: column;
    }
    
    .phone-country {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .phone-input-group input {
        width: 100%;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-language-selector {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-lang-option {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Forms Mobile */
    .form-grid {
        grid-template-columns: 1fr !important;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
    }
    
    /* Tables Mobile */
    .table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table thead {
        display: none;
    }
    
    .table tbody {
        display: block;
    }
    
    .table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1rem;
        background: white;
    }
    
    .table td {
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--bg-light);
        text-align: right;
    }
    
    .table td:before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: var(--text-light);
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .table td:last-child {
        border-bottom: none;
    }
    
    /* Toast Mobile */
    .toast-container {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .toast {
        min-width: auto;
    }
    
    /* Auth Cards Mobile */
    .auth-card,
    .account-card {
        padding: 1.5rem;
        margin: 1.5rem auto;
        border-radius: 16px;
    }
    
    /* Contact Mobile */
    .contact-map iframe {
        height: 250px;
    }
}

/* ============================================
   HOMEPAGE SECTIONS STYLES
   ============================================ */

.categories-icons-section {
    padding: 2rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

/* Categories Icons Section */
.categories-icons-section {
    padding: 2rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.categories-icons-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem 0;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
    min-width: 100px;
}

.category-icon-item:hover {
    transform: translateY(-3px);
}

.category-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.category-icon-item:hover .category-icon-wrapper {
    transform: translateY(-3px);
}

.category-icon {
    font-size: 2rem;
    color: #000000;
    transition: color 0.3s ease;
}

.category-icon-item:hover .category-icon {
    color: #ffffff !important;
}

.category-icon-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    text-align: center;
    color: #000000;
}

.category-icon-count {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 400;
}

/* Category Banners Section */
.category-banners-section {
    padding: 3rem 0;
}

.category-banners-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 500px;
}

/* New Category Banners Layout - FAUCETS (üst, 2 sütun), DOOR (sağ, dikey), alt 2 küçük banner */
.category-banners-grid-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    min-height: 600px;
    position: relative;
}

/* Minimal banner grid positions */
.category-banner-new {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    text-decoration: none;
    display: block;
    height: 100%;
}

/* FAUCETS - Sol üst, 2 sütun genişliğinde, sadece üst satır */
.category-banner-new.banner-ceramic {
    grid-row: 1;
    grid-column: 1 / span 2;
    z-index: 1;
}

/* DOOR - Sağ, dikey, tüm yüksekliği kaplıyor */
.category-banner-new.banner-right-vertical {
    grid-row: 1 / span 2;
    grid-column: 3;
    z-index: 1;
}

/* SANITARY - Sol alt */
.category-banner-new.banner-bottom-left {
    grid-row: 2;
    grid-column: 1;
    z-index: 2;
}

/* BEDROOM - Sağ alt (ortada) */
.category-banner-new.banner-bottom-right {
    grid-row: 2;
    grid-column: 2;
    z-index: 2;
}


.category-banner-new img,
.category-banner-new .category-banner-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-banner-placeholder.gradient-bg {
    background: linear-gradient(135deg, #ffffff 0%, #f3eff8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-large {
    font-size: 1.5rem;
    color: #592c86;
    opacity: 0.8;
}

.category-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-banner-new:hover .category-banner-image {
    transform: scale(1.05);
}

.category-banner-new:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.category-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    display: block;
}

.category-banner.banner-large {
    grid-row: 1 / 3;
}

.category-banner img,
.category-banner-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-banner-placeholder {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.category-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-banner-new .category-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.875rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    z-index: 2;
    gap: 0.2rem;
}

.category-banner-new.banner-ceramic .category-banner-overlay {
    padding: 1rem 1.125rem;
}

.category-banner-new.banner-dark .category-banner-overlay {
    background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0.7), transparent);
    color: #333;
}

.banner-small-text {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.2rem;
    opacity: 0.95;
}

.category-banner-new.banner-dark .banner-small-text {
    color: #000000;
}

.category-banner-overlay h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.category-banner-new .category-banner-overlay h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.category-banner-new.banner-ceramic .category-banner-overlay h3 {
    font-size: 1.25rem;
}

.category-banner-new.banner-dark .category-banner-overlay h3 {
    color: #000000;
}

.banner-description {
    margin: 0 0 0.3rem 0;
    color: rgba(255,255,255,0.95);
    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: 400;
}

.category-banner-new.banner-dark .banner-description {
    color: #000000;
}

.shop-now-btn {
    margin-top: 0.2rem;
    display: inline-block;
    padding: 0.35rem 0.7rem;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
    transition: all 0.3s ease;
    align-self: flex-start;
    color: #592c86;
}

.category-banner-new.banner-dark .shop-now-btn {
    background: rgba(89, 44, 134, 0.1);
    border: 1px solid rgba(89, 44, 134, 0.3);
    color: #592c86;
}

.category-banner-new:hover .shop-now-btn {
    background: rgba(89, 44, 134, 0.3);
    border-color: rgba(89, 44, 134, 0.8);
    color: #592c86;
}

.category-banner-new.banner-dark:hover .shop-now-btn {
    background: rgba(89, 44, 134, 0.2);
    border-color: rgba(89, 44, 134, 0.5);
    color: #592c86;
}

/* Products Tabs Section */
.products-tabs-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.products-tabs-header {
    margin-bottom: 2rem;
}

.products-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Support (Call Us) - tek blok, tam genişlik kart */
.support-only-section {
    padding: 3rem 0;
}
.support-section-standalone {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #592c86 0%, #7b3fb8 100%);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    box-shadow: 0 12px 40px rgba(89, 44, 134, 0.25);
}
.support-section-standalone .support-image {
    height: auto;
    min-height: 200px;
    background: rgba(0,0,0,0.15);
}
.support-section-standalone .support-content {
    padding: 2.5rem;
    color: #fff;
}
.support-section-standalone .support-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.support-section-standalone .support-content h2 {
    color: #fff;
    font-size: 1.75rem;
    margin: 0.5rem 0 1rem 0;
}
.support-section-standalone .support-phone {
    color: #fff;
    font-size: 1.35rem;
    margin: 1rem 0;
}
.support-section-standalone .btn-primary {
    background: #fff;
    color: #592c86;
    border-color: #fff;
}
.support-section-standalone .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: #592c86;
}
@media (max-width: 768px) {
    .support-section-standalone {
        grid-template-columns: 1fr;
    }
}

/* Eski grid (referans için bırakıldı) */
.best-selling-support-section {
    padding: 4rem 0;
}
.best-selling-support-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
}

.support-section {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.support-image {
    height: 200px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.support-image-placeholder {
    font-size: 5rem;
    color: white;
    opacity: 0.3;
}

.support-content {
    padding: 2rem;
}

.support-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.support-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.support-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Neden Biz? / Why Us? Section */
.why-us-section {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}
.why-us-section .section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}
.why-us-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.why-us-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--text-color);
}
.why-us-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}
.why-us-item span {
    line-height: 1.4;
}

/* NE YAPIYORUZ? (What We Do) - 3 sütun, slider hemen altı */
.what-we-do-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #f0ecf5 0%, #fff 100%);
    border-bottom: 3px solid var(--primary-color, #592c86);
}
.what-we-do-title {
    text-align: center;
    margin-bottom: 2.25rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.02em;
}
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}
.what-we-do-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 2px solid rgba(89, 44, 134, 0.12);
    box-shadow: 0 8px 24px rgba(89, 44, 134, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.what-we-do-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(89, 44, 134, 0.15);
    border-color: rgba(89, 44, 134, 0.25);
}
.what-we-do-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #592c86 0%, #7b3fb8 100%);
    border-radius: 14px;
    color: #fff;
}
.what-we-do-icon i {
    font-size: 1.75rem;
    color: #fff;
}
.what-we-do-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.6rem 0;
    line-height: 1.3;
}
.what-we-do-item-desc {
    font-size: 0.95rem;
    color: var(--text-muted, #555);
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .what-we-do-item {
        padding: 1.5rem 1rem;
    }
}

/* What We Do? + Neden Biz? + Lojistik (Fire Ball üstü, yan yana 3 kart) */
.why-us-logistics-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8f6fb 100%);
    border-top: 1px solid rgba(89, 44, 134, 0.1);
}
.why-us-logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}
.why-us-logistics-grid.why-us-logistics-double {
    grid-template-columns: 1fr 1fr;
}
.why-us-logistics-single {
    grid-template-columns: 1fr !important;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.why-us-card,
.logistics-card,
.what-we-do-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.25rem;
    border: 2px solid rgba(89, 44, 134, 0.1);
    box-shadow: 0 8px 28px rgba(89, 44, 134, 0.08);
    min-height: 220px;
}
.what-we-do-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color, #592c86);
    letter-spacing: -0.02em;
}
.what-we-do-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.what-we-do-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 1rem;
    color: var(--text-color);
}
.what-we-do-list-item i {
    color: var(--primary-color, #592c86);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.what-we-do-list-text {
    display: block;
    line-height: 1.4;
}
.what-we-do-list-text strong {
    display: block;
    margin-bottom: 0.15rem;
}
.what-we-do-list-text em {
    font-size: 0.9rem;
    color: var(--text-muted, #555);
    font-style: normal;
    font-weight: 400;
}
.why-us-card-title,
.logistics-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color, #592c86);
    letter-spacing: -0.02em;
}
.why-us-logistics-section .why-us-list,
.logistics-list-vertical {
    list-style: none;
    margin: 0;
    padding: 0;
}
.why-us-logistics-section .why-us-item,
.why-us-logistics-section .logistics-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 1rem;
    color: var(--text-color);
}
.why-us-logistics-section .why-us-item i,
.why-us-logistics-section .logistics-item i {
    color: var(--primary-color, #592c86);
    font-size: 1rem;
    flex-shrink: 0;
}
.why-us-logistics-section .why-us-item span,
.why-us-logistics-section .logistics-item span {
    line-height: 1.4;
}
@media (max-width: 768px) {
    .why-us-logistics-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .why-us-logistics-single {
        max-width: none;
    }
    .why-us-card,
    .logistics-card,
    .what-we-do-card {
        padding: 1.5rem 1.5rem;
        min-height: auto;
    }
}

/* Eski tek başına logistics (artık kullanılmıyor, yedek) */
.logistics-section {
    padding: 2.5rem 0;
    background: #fff;
}
.logistics-title { font-size: 1.5rem; font-weight: 800; }
.logistics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.logistics-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-color);
}
.logistics-item i {
    color: var(--primary-color, #592c86);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .logistics-list { grid-template-columns: 1fr; }
}

/* Yangın Topu (Fire Ball) Section - Real Viewers üstü */
.fire-ball-section {
    padding: 2rem 0;
}
.fire-ball-banner {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #922b21 100%);
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fire-ball-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(192, 57, 43, 0.35);
    color: #fff;
}
.fire-ball-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.fire-ball-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #922b21 100%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.4);
}
.fire-ball-overlay {
    position: relative;
    z-index: 2;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 220px;
}
.fire-ball-small-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 0.5rem;
}
.fire-ball-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.fire-ball-description {
    font-size: 1rem;
    margin: 0 0 1rem 0;
    opacity: 0.95;
    max-width: 480px;
}
.fire-ball-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.fire-ball-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #592c86 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: 2px solid transparent;
    text-decoration: none;
}
.fire-ball-banner:hover .fire-ball-btn:not(.fire-ball-btn-2) {
    background: #4a2470 !important;
    color: #fff !important;
}
.fire-ball-btn-2 {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    min-height: 2.75rem;
    line-height: 1.2;
}
.fire-ball-banner:hover .fire-ball-btn-2 {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border-color: #fff !important;
}

.best-selling-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.best-selling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.best-selling-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.best-selling-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.best-selling-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.best-selling-info {
    flex: 1;
}

.best-selling-category {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.best-selling-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-float.whatsapp-left {
    left: 30px;
}

.whatsapp-float.whatsapp-right {
    right: 30px;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* Homepage Sections Responsive */
@media (max-width: 1024px) {
    .category-banners-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .category-banner.banner-large {
        grid-row: auto;
    }
    
    .best-selling-support-grid {
        grid-template-columns: 1fr;
    }
    
    .best-selling-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .categories-icons-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        justify-content: stretch !important;
    }
    
    .category-icon-item {
        min-width: auto !important;
        width: 100%;
    }
    
    .category-banners-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        height: auto !important;
    }
    
    .category-banner.banner-large {
        grid-row: auto !important;
    }
    
    .products-tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: calc(33.333% - 0.5rem);
    }
}

/* Smooth Scroll */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.feature-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--text-color);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-color);
}

.about-feature-item strong {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.about-image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--text-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state p {
    font-size: 1.1rem;
    margin: 0;
}

/* Product Placeholder */
.product-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--bg-light), #e8e0f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder span {
    font-size: 4rem;
    opacity: 0.5;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.toast {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: toastSlideIn 0.3s ease-out;
    min-width: 300px;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-color: #22c55e;
}

.toast.error {
    border-color: #592c86;
}

.toast.info {
    border-color: var(--primary-color);
}

.toast.warning {
    border-color: #f59e0b;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--text-color);
}

.toast-message {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.toast-close:hover {
    color: var(--text-color);
}

/* Search Bar */
.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-bar input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(89, 44, 134, 0.1);
}

.search-bar button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-bar button:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

/* Product Detail Page */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-light);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.product-placeholder-large p {
    margin-top: 1rem;
    font-size: 1rem;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

/* Product Thumbnails Scrollbar */
.product-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    border-radius: 3px;
}

.product-thumbnails::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #4a2470, #592c86);
}

.thumbnail-btn {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-fast);
}

.thumbnail-btn:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail-btn.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(89, 44, 134, 0.1);
}

.thumbnail-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.product-sku {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.sku-label {
    color: var(--text-light);
}

.sku-value {
    color: var(--text-color);
    font-weight: 600;
}

.product-excerpt-large {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.product-pricing {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.price-new {
    color: #592c86;
    font-size: 2rem;
    font-weight: 700;
}

.price-current-large {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.price-request-large {
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
}

.price-discount {
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-stock-info {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-stock-info.in-stock {
    background: rgba(89, 44, 134, 0.1);
    color: #592c86;
}

.product-stock-info.out-of-stock {
    background: rgba(89, 44, 134, 0.1);
    color: #592c86;
}

.product-categories {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.categories-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.category-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.category-tag:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.product-cart-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.cart-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-form-group label {
    font-weight: 500;
    color: var(--text-color);
}

.cart-form-group input {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    max-width: 150px;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Product Tabs Container */
.product-tabs-container {
    margin-top: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.product-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-light);
    overflow-x: auto;
}

.product-tabs-nav::-webkit-scrollbar {
    height: 6px;
}

.product-tabs-nav::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.product-tabs-nav::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    border-radius: 3px;
}

.product-tabs-nav::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #4a2470, #592c86);
}

.product-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
}

.product-tab-btn:hover {
    color: var(--primary-color);
    background: rgba(89, 44, 134, 0.05);
}

.product-tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: white;
    font-weight: 600;
}

.product-tab-btn i {
    font-size: 1.1rem;
}

.product-tab-btn .tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.product-tabs-content {
    padding: 2.5rem;
    min-height: 300px;
}

.product-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.product-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wide Description */
.product-description-wide {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    white-space: pre-line;
    max-width: 100%;
}

.product-description-wide p {
    margin-bottom: 1.25rem;
}

.product-description-wide p:last-child {
    margin-bottom: 0;
}

/* Wide Specifications */
.product-specifications-wide {
    width: 100%;
}

.product-specifications-wide .spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.product-specifications-wide .spec-table tr {
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-base);
}

.product-specifications-wide .spec-table tr:hover {
    background: var(--bg-light);
}

.product-specifications-wide .spec-table tr:last-child {
    border-bottom: none;
}

.product-specifications-wide .spec-key {
    padding: 1.25rem 1.5rem;
    width: 35%;
    background: var(--bg-light);
    color: var(--text-color);
    font-size: 0.95rem;
    vertical-align: top;
}

.product-specifications-wide .spec-value {
    padding: 1.25rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Wide Files */
.product-files-wide {
    width: 100%;
}

.product-files-wide .product-files-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* PDF Viewer Container */
.product-pdf-viewer-container {
    margin-bottom: 2.5rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-pdf-viewer-container:last-child {
    margin-bottom: 0;
}

.pdf-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.pdf-viewer-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.pdf-viewer-title i {
    font-size: 1.5rem;
    color: #dc3545;
    flex-shrink: 0;
}

.pdf-viewer-title h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    word-break: break-word;
    line-height: 1.4;
}

.pdf-file-size {
    font-size: 0.85rem;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    white-space: nowrap;
}

.pdf-viewer-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pdf-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.pdf-action-btn:hover {
    background: linear-gradient(135deg, #592c86, #6e3a9e);
    border-color: #592c86;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pdf-action-btn i {
    font-size: 1rem;
}

.pdf-viewer-wrapper {
    position: relative;
    width: 100%;
    height: 800px;
    background: #e5e5e5;
    overflow: hidden;
}

.pdf-viewer-iframe,
.pdf-viewer-embed,
.pdf-viewer-object {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    min-height: 600px;
}

.pdf-viewer-object {
    background: #f5f5f5;
}

/* Mobile Responsive for PDF Viewer */
@media (max-width: 768px) {
    .pdf-viewer-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pdf-viewer-title {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .pdf-viewer-title h3 {
        font-size: 1rem;
    }
    
    .pdf-viewer-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .pdf-viewer-wrapper {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .pdf-viewer-wrapper {
        height: 500px;
    }
    
    .pdf-viewer-title h3 {
        font-size: 0.9rem;
    }
    
    .pdf-file-size {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Responsive Product Tabs */
@media (max-width: 768px) {
    .product-tabs-nav {
        gap: 0;
    }

    .product-tab-btn {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .product-tab-btn span {
        display: none;
    }

    .product-tab-btn i {
        font-size: 1.2rem;
    }

    .product-tabs-content {
        padding: 1.5rem;
    }

    .product-description-wide {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .product-specifications-wide .spec-key {
        width: 40%;
        padding: 1rem;
        font-size: 0.85rem;
    }

    .product-specifications-wide .spec-value {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .product-files-wide .product-files-grid {
        grid-template-columns: 1fr;
    }
}

/* Legacy styles for backward compatibility */
.product-description-section,
.product-specifications {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

/* Product Files Section */
.product-files-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.product-files-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 1.5rem 0;
}

.product-files-section h2 i {
    color: #592c86;
    font-size: 1.25rem;
}

.product-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.product-file-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.product-file-card:hover {
    border-color: #592c86;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--text-color);
}

.product-file-card .file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f3eff8 0%, #e8e0f0 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.product-file-card .file-icon i {
    font-size: 2rem;
    color: #592c86;
}

.product-file-card .file-info {
    flex: 1;
    min-width: 0;
}

.product-file-card .file-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    word-break: break-word;
    line-height: 1.4;
}

.product-file-card .file-info .file-size {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-file-card .file-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.product-file-card:hover .file-download {
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    color: #000;
}

.product-file-card .file-download i {
    font-size: 1.1rem;
    color: var(--text-light);
    transition: color var(--transition-base);
}

.product-file-card:hover .file-download i {
    color: white;
}

@media (max-width: 768px) {
    .product-files-grid {
        grid-template-columns: 1fr;
    }
    
    .product-file-card {
        padding: 1rem;
    }
    
    .product-file-card .file-icon {
        width: 50px;
        height: 50px;
    }
    
    .product-file-card .file-icon i {
        font-size: 1.5rem;
    }
    
    .product-pdf-viewer-container {
        margin-bottom: 2rem;
    }
    
    .pdf-viewer-wrapper {
        height: 600px;
    }
}

.product-specifications {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.product-description-section h2,
.product-specifications h2 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    white-space: pre-line;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.spec-table tr {
    border-bottom: 1px solid var(--border-color);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-key {
    padding: 1rem;
    width: 30%;
    background: var(--bg-light);
    color: var(--text-color);
}

.spec-value {
    padding: 1rem;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Updates for New Sections */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .toast-container {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .toast {
        min-width: auto;
    }
}

@media (max-width: 640px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
    }
}

/* ============================================
   PAGINATION STYLES
   ============================================ */
.pagination-wrapper {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.pagination-btn:hover:not(.pagination-disabled) {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination-btn.pagination-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
    color: var(--text-light);
}

.pagination-btn i {
    font-size: 0.85rem;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.pagination-number:hover:not(.is-active) {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination-number.is-active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.pagination-number.is-active:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
}

.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    color: var(--text-light);
    font-weight: 500;
    user-select: none;
}

.pagination-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pagination-text strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Pagination Responsive */
@media (max-width: 768px) {
    .pagination-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
        gap: 1rem;
    }

    .pagination {
        gap: 0.375rem;
    }

    .pagination-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .pagination-btn span {
        display: none;
    }

    .pagination-number {
        min-width: 40px;
        height: 40px;
        padding: 0 0.5rem;
        font-size: 0.875rem;
    }

    .pagination-dots {
        min-width: 40px;
        height: 40px;
    }

    .pagination-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pagination-numbers {
        gap: 0.25rem;
    }

    .pagination-number {
        min-width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .pagination-dots {
        min-width: 36px;
        height: 36px;
    }
}

/* Compare Modal Styles */
.compare-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.compare-modal.active {
    opacity: 1;
    visibility: visible;
}

.compare-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.compare-modal-content {
    position: relative;
    width: 95%;
    max-width: 1600px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    overflow: hidden;
    box-sizing: border-box;
}

.compare-modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: #000000;
    color: #ffffff;
    border-bottom: 2px solid rgba(89, 44, 134, 0.3);
    position: relative;
}

.compare-header-center {
    flex: 1;
    text-align: center;
}

.compare-header-right {
    position: absolute;
    right: 2rem;
}

.compare-header-left {
    flex: 0 0 auto;
}

.compare-header-center {
    flex: 1;
    text-align: center;
}

.compare-header-center h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.compare-header-right {
    flex: 0 0 auto;
}

.compare-settings-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.compare-settings-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.compare-settings-toggle span {
    font-size: 0.9rem;
    font-weight: 600;
}

.compare-close-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background var(--transition-fast);
}

.compare-close-btn:hover {
    background: rgba(89, 44, 134, 0.3);
    color: #592c86;
}

.compare-modal-body {
    flex: 1;
    overflow-x: auto;
    overflow-y: auto;
    padding: 2rem;
    background: #ffffff;
    width: 100%;
}

.compare-loading,
.compare-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.compare-empty h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
    color: var(--text-color);
}

.compare-empty p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.compare-products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 1fr);
    gap: 1.5rem;
    align-items: start;
    width: max-content;
    min-width: 100%;
    overflow-x: auto;
}

/* Force horizontal layout when products are specified - This is overridden by more specific rules below */

.compare-product-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
    position: relative;
    min-width: 0; /* Allow item to shrink if needed */
    width: 100%;
    max-width: 100%;
}

.compare-product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.compare-product-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    flex: 1;
}

.compare-remove-product {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.compare-remove-product:hover {
    background: #f3eff8;
    color: #592c86;
}

.compare-product-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compare-main-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
}

.compare-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
}

.compare-product-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compare-detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.compare-detail-row label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-detail-row span {
    color: var(--text-color);
    font-size: 1rem;
}

.compare-description-content,
.compare-content-text {
    color: var(--text-light);
    line-height: 1.6;
    max-height: 150px;
    overflow-y: auto;
}

/* Compare Description & Content Scrollbar */
.compare-description-content::-webkit-scrollbar,
.compare-content-text::-webkit-scrollbar,
.compare-specifications-list::-webkit-scrollbar {
    width: 6px;
}

.compare-description-content::-webkit-scrollbar-track,
.compare-content-text::-webkit-scrollbar-track,
.compare-specifications-list::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 3px;
}

.compare-description-content::-webkit-scrollbar-thumb,
.compare-content-text::-webkit-scrollbar-thumb,
.compare-specifications-list::-webkit-scrollbar-thumb {
    background: #592c86;
    border-radius: 3px;
}

.compare-description-content::-webkit-scrollbar-thumb:hover,
.compare-content-text::-webkit-scrollbar-thumb:hover,
.compare-specifications-list::-webkit-scrollbar-thumb:hover {
    background: #4a2470;
}

.compare-specifications {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.compare-specifications-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.compare-spec-item {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #ffffff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.compare-spec-item strong {
    color: var(--text-color);
    min-width: 100px;
    font-weight: 600;
}

.compare-spec-item span {
    color: var(--text-light);
    flex: 1;
}

.compare-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: #000000;
    border-top: 2px solid #592c86;
}

.compare-footer-left {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.compare-share-dropdown {
    position: relative;
}

.compare-share-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 100;
    overflow: hidden;
}

.compare-share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.compare-share-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast);
    font-size: 0.9rem;
    color: var(--text-color);
}

.compare-share-option:hover {
    background: var(--bg-light);
}

.compare-share-option i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.compare-share-option:first-child {
    color: #592c86;
}

.compare-share-option:last-child {
    color: var(--primary-color);
}

.compare-footer-btn span {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.compare-footer-btn {
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    border-radius: 25px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.compare-footer-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

.compare-footer-btn:hover {
    background: rgba(89, 44, 134, 0.3);
    color: #592c86;
    transform: scale(1.1);
}

.compare-footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compare-thumbnails {
    display: flex;
    gap: 0.5rem;
}

.compare-thumbnail {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(89, 44, 134, 0.5);
}

.compare-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(89, 44, 134, 0.1);
    font-size: 1.5rem;
    color: #592c86;
}

.compare-remove-thumb {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    color: #000000;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.compare-clear-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.compare-clear-btn:hover {
    background: rgba(89, 44, 134, 0.2);
    border-color: #592c86;
}

.compare-add-cart-form {
    margin-top: 0.5rem;
}

/* Responsive Compare Modal */
@media (max-width: 1024px) {
    .compare-panel-body .compare-products-grid,
    .compare-modal-body .compare-products-grid {
        grid-auto-columns: minmax(250px, 320px) !important;
    }
    
    .compare-modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .compare-main-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    /* Modal Content */
    .compare-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        height: 100vh !important;
    }
    
    .compare-modal-header {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .compare-header-center h2 {
        font-size: 1.1rem;
    }
    
    .compare-modal-body {
        padding: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Panel Content */
    .compare-panel-body {
        padding: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Grid - Mobilde tek sütun veya dar sütunlar */
    .compare-panel-body .compare-products-grid,
    .compare-modal-body .compare-products-grid {
        grid-auto-columns: minmax(280px, 100%) !important;
        gap: 1rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .compare-product-item {
        padding: 1rem;
        gap: 1rem;
        min-width: 280px;
        max-width: 100%;
    }
    
    .compare-product-header {
        padding-bottom: 0.75rem;
        gap: 0.5rem;
    }
    
    .compare-product-header h3 {
        font-size: 1rem;
    }
    
    .compare-main-image {
        height: 200px;
    }
    
    .compare-product-details {
        gap: 0.75rem;
    }
    
    .compare-detail-row {
        padding: 0.75rem;
        gap: 0.375rem;
    }
    
    .compare-detail-row label {
        font-size: 0.85rem;
    }
    
    .compare-detail-row span {
        font-size: 0.9rem;
    }
    
    .compare-modal-footer {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
        position: sticky;
        bottom: 0;
    }
    
    .compare-footer-left,
    .compare-footer-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .compare-footer-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .compare-thumbnails {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .compare-thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* Compare Bar - Fixed Bottom Bar */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #592c86;
}

.compare-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    max-width: 100%;
}

.compare-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.compare-bar-action-btn {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.compare-bar-action-btn:hover {
    background: rgba(89, 44, 134, 0.3);
    color: #592c86;
    transform: scale(1.1);
}

.compare-bar-whatsapp {
    background: linear-gradient(90deg, #592c86, #6e3a9e) !important;
    color: #000000 !important;
}

.compare-bar-whatsapp:hover {
    background: linear-gradient(90deg, #4a2470, #6e3a9e) !important;
    color: #000000 !important;
}

.compare-bar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.compare-bar-thumbnails {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.compare-bar-thumbnail {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(89, 44, 134, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: rgba(89, 44, 134, 0.1);
}

.compare-bar-thumbnail:hover {
    border-color: #592c86;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(89, 44, 134, 0.5);
}

.compare-bar-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-bar-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.compare-bar-thumbnail-remove {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    color: #000000;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    z-index: 10;
}

.compare-bar-clear-btn {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: none;
    background: rgba(89, 44, 134, 0.8);
    color: #000000;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.compare-bar-clear-btn:hover {
    background: linear-gradient(90deg, #592c86, #6e3a9e);
    transform: scale(1.1);
}

/* Compare Panel - Expanded view */
.compare-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 80px; /* Height of compare bar */
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow-y: auto;
}

.compare-panel-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: #000000;
    color: white;
    border-bottom: 2px solid #592c86;
    z-index: 10001;
    position: relative;
}

.compare-panel-header-left {
    position: absolute;
    left: 1.5rem;
}

.compare-panel-header-center {
    flex: 1;
    text-align: center;
}

.compare-panel-header-right {
    position: absolute;
    right: 1.5rem;
}

.compare-panel-header-center h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.compare-panel-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
    padding: 0.5rem;
    border-radius: 4px;
}

.compare-panel-close-btn:hover {
    background: rgba(89, 44, 134, 0.3);
    color: #592c86;
    transform: rotate(90deg);
}

.compare-panel-body {
    padding: 1.5rem;
    max-height: calc(100vh - 80px - 60px);
    overflow-x: auto;
    overflow-y: auto;
    background: #ffffff;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Compare Panel & Modal Scrollbar */
.compare-panel-body::-webkit-scrollbar,
.compare-modal-body::-webkit-scrollbar,
.compare-products-grid::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.compare-panel-body::-webkit-scrollbar-track,
.compare-modal-body::-webkit-scrollbar-track,
.compare-products-grid::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 4px;
}

.compare-panel-body::-webkit-scrollbar-thumb,
.compare-modal-body::-webkit-scrollbar-thumb,
.compare-products-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #592c86, #6e3a9e);
    border-radius: 4px;
}

.compare-panel-body::-webkit-scrollbar-thumb:hover,
.compare-modal-body::-webkit-scrollbar-thumb:hover,
.compare-products-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4a2470, #592c86);
}

/* Compare Thumbnails Scrollbar */
.compare-bar-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.compare-bar-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.compare-bar-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(89, 44, 134, 0.5);
    border-radius: 2px;
}

.compare-bar-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #592c86;
}

/* Ensure compare grid is horizontal and scrollable in panel */
.compare-panel-body .compare-products-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(300px, 400px) !important;
    gap: 1.5rem !important;
    padding: 1rem 0 !important;
    min-width: max-content !important;
    width: max-content !important;
    max-width: none !important;
}

/* Modal body compare grid */
.compare-modal-body .compare-products-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(280px, 400px) !important;
    gap: 1.5rem !important;
    padding: 1rem 0 !important;
    min-width: max-content !important;
    width: max-content !important;
}

/* Share menu for compare bar */
.compare-bar .compare-share-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 100;
    overflow: hidden;
}

.compare-bar .compare-share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .compare-bar-content {
        padding: 0.5rem 0.75rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .compare-bar-left {
        gap: 0.5rem;
    }
    
    .compare-bar-action-btn,
    .compare-bar-clear-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        padding: 0;
    }
    
    .compare-bar-thumbnails {
        gap: 0.5rem;
        max-width: calc(100vw - 150px);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .compare-bar-thumbnail {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    
    .compare-bar-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .compare-panel {
        bottom: 65px;
    }
    
    .compare-panel-header {
        padding: 0.75rem 1rem;
    }
    
    .compare-panel-header-center h2 {
        font-size: 1rem;
    }
    
    .compare-panel-body {
        max-height: calc(100vh - 65px - 50px);
        padding: 0.75rem;
    }
    
    /* Panel içindeki grid mobilde daha optimize */
    .compare-panel-body .compare-products-grid {
        grid-auto-columns: minmax(260px, 100%) !important;
        gap: 1rem !important;
    }
    
    .compare-panel-body .compare-product-item {
        min-width: 260px;
        padding: 1rem;
    }
}

/* WhatsApp Contact Button in Product Detail */
.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-btn svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* Custom Modal Styles */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.custom-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.custom-modal.active .custom-modal-content {
    transform: scale(1) translateY(0);
}

.custom-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.custom-modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.custom-modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.custom-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-color);
    transform: rotate(90deg);
}

.custom-modal-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    max-height: 60vh;
    overflow-y: auto;
}

/* Custom Modal Scrollbar */
.custom-modal-body::-webkit-scrollbar {
    width: 8px;
}

.custom-modal-body::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 4px;
}

.custom-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #592c86, #6e3a9e);
    border-radius: 4px;
}

.custom-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4a2470, #592c86);
}

.custom-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: #f8f9fa;
}

.custom-modal-btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.custom-modal-btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.custom-modal-btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(89, 44, 134, 0.3);
}

.custom-modal-btn-secondary {
    background: #e5e7eb;
    color: var(--text-color);
}

.custom-modal-btn-secondary:hover {
    background: #d1d5db;
}

.custom-modal-btn-danger {
    background: #dc2626;
    color: #ffffff;
}

.custom-modal-btn-danger:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

@media (max-width: 640px) {
    .custom-modal-content {
        width: 95%;
        margin: 1rem;
    }

    .custom-modal-header,
    .custom-modal-body,
    .custom-modal-footer {
        padding: 1rem;
    }

    .custom-modal-footer {
        flex-direction: column-reverse;
    }

    .custom-modal-btn {
        width: 100%;
    }
}

/* WhatsApp Button in Compare Modal */
.btn-whatsapp {
    width: 100%;
    background: #25D366 !important;
    color: white !important;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .btn-whatsapp {
        padding: 10px 12px;
        font-size: 0.875rem;
    }
    
    .btn-whatsapp i {
        font-size: 1.1rem;
    }
}

/* ========== Kurumsal renk zorlaması (#592c86) – tema ayarından bağımsız ========== */
.search-button,
.site-header .search-button {
    background: #592c86 !important;
    color: #ffffff !important;
}
.search-button:hover,
.site-header .search-button:hover {
    background: #4a2470 !important;
    color: #ffffff !important;
}
.header-login-btn {
    background: #592c86 !important;
    color: #ffffff !important;
    border-color: #592c86 !important;
}
.header-login-btn:hover {
    background: #4a2470 !important;
    border-color: #4a2470 !important;
    color: #ffffff !important;
}
/* Giriş sonrası: Quote (sepet) ve Kullanıcı adı ikonları kurumsal renk */
.header-link,
.header-link i,
.cart-link,
.cart-link i {
    color: #592c86 !important;
}
.header-link:hover,
.cart-link:hover {
    color: #4a2470 !important;
}
.cart-link:hover i,
.header-link:hover i {
    color: #4a2470 !important;
}
.header-register-btn {
    background: #592c86 !important;
    color: #ffffff !important;
    border-color: #592c86 !important;
}
.header-register-btn:hover {
    background: #4a2470 !important;
    border-color: #4a2470 !important;
    color: #ffffff !important;
}
/* Cart, Account, Login, Register, Checkout sayfaları – ana butonlar kurumsal renk */
.btn-primary {
    background: #592c86 !important;
    border-color: #592c86 !important;
    color: #ffffff !important;
}
.btn-primary:hover {
    background: #4a2470 !important;
    border-color: #4a2470 !important;
    color: #ffffff !important;
}
.btn-outline {
    border-color: #592c86 !important;
    color: #592c86 !important;
}
.btn-outline:hover {
    background: #592c86 !important;
    border-color: #592c86 !important;
    color: #ffffff !important;
}
/* Auth (login/register) ve cart/account sayfalarındaki linkler */
.auth-card a,
.section .auth-card a,
.cart-summary a,
.account-section a {
    color: #592c86 !important;
}
.auth-card a:hover,
.section .auth-card a:hover,
.cart-summary a:hover,
.account-section a:hover {
    color: #4a2470 !important;
}
.cart-summary .btn-primary,
.cart-summary .btn-outline,
.checkout-section .btn-primary,
.checkout-section .btn-outline,
.account-section .btn-primary,
.account-section .btn-outline {
    border-color: #592c86 !important;
}
.cart-summary .btn-primary,
.checkout-section .btn-primary,
.account-section .btn-primary {
    background: #592c86 !important;
    color: #ffffff !important;
}
.cart-summary .btn-primary:hover,
.checkout-section .btn-primary:hover,
.account-section .btn-primary:hover {
    background: #4a2470 !important;
    border-color: #4a2470 !important;
}
.checkout-section .summary-item-price,
.checkout-section .summary-total span {
    color: #592c86 !important;
}
.cart-summary .cart-total,
.cart-summary > div:first-child {
    color: #592c86 !important;
}
.back-to-top {
    background: #592c86 !important;
    color: #ffffff !important;
}
.back-to-top:hover {
    background: #4a2470 !important;
    box-shadow: 0 10px 25px rgba(89, 44, 134, 0.4) !important;
}
.tab-btn.active,
.home-product-tabs .tab-btn.active {
    color: #592c86 !important;
    border-bottom-color: #592c86 !important;
}
.tab-btn:hover {
    color: #592c86 !important;
}
.product-action-btn-primary,
.home-product-btn-primary,
.home-product-card .product-action-btn-primary {
    background: #592c86 !important;
    border-color: #592c86 !important;
    color: #ffffff !important;
    min-width: 12.5rem;
}
/* İncele / Karşılaştır: mavi değil, nötr gri/beyaz */
.product-action-btn:not(.product-action-btn-primary),
.product-compare-btn,
.home-product-btn:not(.home-product-btn-primary),
.home-product-compare-btn {
    background: #ffffff !important;
    border-color: #dee2e6 !important;
    color: #495057 !important;
}
.product-action-btn:not(.product-action-btn-primary):hover,
.product-compare-btn:hover,
.home-product-btn:not(.home-product-btn-primary):hover,
.home-product-compare-btn:hover {
    background: #f8f9fa !important;
    border-color: #592c86 !important;
    color: #592c86 !important;
}
.product-action-btn-primary:hover,
.home-product-btn-primary:hover {
    background: #4a2470 !important;
    border-color: #4a2470 !important;
    color: #ffffff !important;
}
.best-selling-item:hover {
    border-color: #592c86 !important;
    box-shadow: 0 10px 25px rgba(89, 44, 134, 0.15) !important;
}
.support-phone {
    color: #592c86 !important;
}
.support-content .btn-primary,
.best-selling-support-section .btn-primary {
    background: #592c86 !important;
    border-color: #592c86 !important;
    color: #ffffff !important;
}
.support-content .btn-primary:hover,
.best-selling-support-section .btn-primary:hover {
    background: #4a2470 !important;
    border-color: #4a2470 !important;
    color: #ffffff !important;
}
.testimonial-company {
    color: #592c86 !important;
}
.testimonial-nav {
    border-color: #e2e8f0;
    color: #64748b;
}
.testimonial-nav:hover {
    background: #592c86 !important;
    color: #ffffff !important;
    border-color: #592c86 !important;
}
.testimonial-next {
    background: #592c86 !important;
    color: #ffffff !important;
    border-color: #592c86 !important;
}
.testimonial-dot.active {
    background: #592c86 !important;
}
.footer-column h4::after {
    background: linear-gradient(90deg, #592c86, #6e3a9e) !important;
}
.footer-contact-form::before {
    background: linear-gradient(90deg, #592c86, #6e3a9e) !important;
}
.footer-contact-form .btn-primary,
.footer-contact-form .btn-block.btn-primary {
    background: linear-gradient(135deg, #592c86, #6e3a9e) !important;
    border-color: #592c86 !important;
    color: #ffffff !important;
}
.footer-contact-form .btn-primary:hover,
.footer-contact-form .btn-block.btn-primary:hover {
    background: linear-gradient(135deg, #4a2470, #6e3a9e) !important;
    border-color: #4a2470 !important;
    color: #ffffff !important;
}
.footer-lang-option.active {
    background: #592c86 !important;
    color: #ffffff !important;
    border-color: #592c86 !important;
    box-shadow: 0 2px 8px rgba(89, 44, 134, 0.25) !important;
}
.footer-lang-option:hover {
    border-color: #592c86 !important;
    color: #592c86 !important;
}
.site-header .main-nav a:hover {
    color: #592c86 !important;
}
.site-header .main-nav a::after {
    background: #592c86 !important;
}
.language-switcher select:hover,
.language-switcher select:focus {
    border-color: #592c86 !important;
    color: #592c86 !important;
}
.language-switcher select:focus {
    box-shadow: 0 0 0 3px rgba(89, 44, 134, 0.15) !important;
}
.footer-column ul li a:hover {
    color: #592c86 !important;
}
.footer-column ul li a::after {
    background: linear-gradient(90deg, #592c86, #6e3a9e) !important;
}
.site-footer::before {
    background: linear-gradient(90deg, transparent, #592c86, transparent) !important;
}
.btn-hero {
    background: #592c86 !important;
    border-color: #592c86 !important;
    color: #ffffff !important;
}
.btn-hero:hover {
    background: #4a2470 !important;
    border-color: #4a2470 !important;
    color: #ffffff !important;
}
.slider-btn {
    color: #592c86 !important;
}
.slider-indicator.active {
    background: #592c86 !important;
}

/* Kategori ikonları: mavi kaldıysa zorla beyaz/mor */
.categories-icons-section .category-icon-wrapper {
    background: #ffffff !important;
    border: 2px solid #e5e7eb !important;
}
.categories-icons-section .category-icon-item:hover .category-icon-wrapper {
    background: #592c86 !important;
    border-color: #592c86 !important;
}
.categories-icons-section .category-icon-item:hover .category-icon,
.categories-icons-section .category-icon-item:hover .category-icon i {
    color: #ffffff !important;
}
.categories-icons-section .category-icon-item .category-icon,
.categories-icons-section .category-icon-item .category-icon i {
    color: #592c86 !important;
}

/* Yangın Topu bölümü butonları – kurumsal mor / ikinci buton outline */
.fire-ball-section .fire-ball-btn:not(.fire-ball-btn-2),
.fire-ball-banner .fire-ball-btn:not(.fire-ball-btn-2) {
    background: #592c86 !important;
    color: #ffffff !important;
    border: none !important;
}
.fire-ball-section .fire-ball-banner:hover .fire-ball-btn:not(.fire-ball-btn-2),
.fire-ball-banner:hover .fire-ball-btn:not(.fire-ball-btn-2) {
    background: #4a2470 !important;
    color: #ffffff !important;
}
.fire-ball-section .fire-ball-btn-2,
.fire-ball-banner .fire-ball-btn-2 {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    opacity: 1;
    min-height: 2.75rem;
    line-height: 1.2;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
.fire-ball-section .fire-ball-banner:hover .fire-ball-btn-2,
.fire-ball-banner:hover .fire-ball-btn-2 {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}