/* ==================== ARAZ APP - CUSTOMER STYLES ==================== */

:root {
    --site-font: 'Poppins', sans-serif;
    --ana-kategori-bg: #ffffff;
    --alt-kategori-bg: #ffffff;
    --urun-bg: #ffffff;
    --text-color: #111827;
    --price-color: #10b981;
    --ana-card-width: 400px;
    --ana-card-height: 160px;
    --alt-card-height: 140px;
    --urun-card-width: 350px;
    --card-gap: 0px;
    --card-gap-mobile: 0px;
    --card-gap-tablet: 0px;
    --card-gap-pc: 0px;
    --sidebar-width: 280px;
    --header-height: 80px;
    --primary-color: #10b981;
    --primary-hover: #059669;
    --bg-gray: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    font-family: var(--site-font);
    box-sizing: border-box;
}

body {
    background-color: var(--bg-gray);
    overflow-x: hidden;
    color: var(--text-color);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Modern Scrollbar for PC */
@media (min-width: 1024px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 200;
    display: flex;
    flex-direction: column;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.loading-image-container {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

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

.loading-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: translateY(1px);
}

.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 24px 0;
}

.loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: all 0.3s;
}

.loading-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Full Screen Menu - Mobile Only */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

.menu-item {
    padding: 20px 32px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.menu-item:hover {
    background: #f9fafb;
    padding-left: 40px;
}

.menu-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

/* Social Media Mobile */
.social-mobile-container {
    padding: 20px;
    border-top: 1px solid #f3f4f6;
    text-align: center;
}

.social-mobile-title {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.social-mobile-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-mobile-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: transform 0.2s;
    text-decoration: none;
}

.social-mobile-item:hover {
    transform: scale(1.1);
}

/* Page Transitions */
.page-transition {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hidden-page {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.active-page {
    display: block;
    opacity: 1;
    pointer-events: all;
}

/* ==================== PC DESKTOP LAYOUT ==================== */

@media (min-width: 1024px) {
    #app {
        max-width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        height: 100vh;
        overflow: hidden;
    }

    /* Sol Sidebar - Navigation */
    #desktop-sidebar {
        width: var(--sidebar-width);
        height: 100vh;
        background: white;
        border-right: 1px solid #e5e7eb;
        display: flex !important;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 50;
        padding: 24px;
        overflow-y: auto;
    }

    .logo-container {
        padding-bottom: 24px;
        border-bottom: 1px solid #f3f4f6;
        margin-bottom: 24px;
    }

    #desktop-logo {
        width: 48px;
        height: 48px;
        border-radius: var(--radius-md);
        object-fit: cover;
    }

    #desktop-logo-text {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
        color: white;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 20px;
    }

    #desktop-app-name {
        font-size: 24px;
        font-weight: 700;
        color: #111827;
        letter-spacing: -0.5px;
    }

    #desktop-slogan {
        font-size: 13px;
        color: #6b7280;
        font-weight: 500;
    }

    /* Sidebar Navigation */
    #customer-sidebar-items {
        flex: 1;
        overflow-y: auto;
    }

    .sidebar-section-title {
        font-size: 11px;
        font-weight: 700;
        color: #9ca3af;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 12px;
        padding-left: 12px;
    }

    .sidebar-cat-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: var(--radius-md);
        transition: all 0.2s;
        margin-bottom: 4px;
        cursor: pointer;
        color: #4b5563;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }

    .sidebar-cat-btn::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: transform 0.2s;
    }

    .sidebar-cat-btn:hover {
        background: #f9fafb;
        color: #111827;
    }

    .sidebar-cat-btn.active {
        background: #ecfdf5;
        color: var(--primary-color);
    }

    .sidebar-cat-btn.active::before {
        transform: scaleY(1);
    }

    .sidebar-cat-icon {
        width: 40px;
        height: 40px;
        border-radius: var(--radius-sm);
        object-fit: cover;
    }

    .sidebar-cat-btn i {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    /* Admin Button in Sidebar */
    #admin-login-btn {
        margin-top: auto;
        padding: 12px;
        border-radius: var(--radius-md);
        background: #f3f4f6;
        color: #6b7280;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.2s;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    #admin-login-btn:hover {
        background: #e5e7eb;
        color: #374151;
    }

    /* Main Content Area */
    #main-content {
        margin-left: var(--sidebar-width);
        flex: 1;
        height: 100vh;
        overflow-y: auto;
        background: var(--bg-gray);
        padding: 0;
    }

    /* PC Header */
    .pc-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 24px 32px;
        background: white;
        border-bottom: 1px solid #e5e7eb;
        position: sticky;
        top: 0;
        z-index: 40;
    }

    .pc-header-title {
        font-size: 28px;
        font-weight: 700;
        color: #111827;
    }

    .pc-header-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .pc-search-box {
        position: relative;
        width: 300px;
    }

    .pc-search-box input {
        width: 100%;
        padding: 10px 16px 10px 40px;
        border: 1px solid #e5e7eb;
        border-radius: var(--radius-lg);
        font-size: 14px;
        transition: all 0.2s;
        background: #f9fafb;
    }

    .pc-search-box input:focus {
        outline: none;
        border-color: var(--primary-color);
        background: white;
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }

    .pc-search-box i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
    }

    .pc-admin-btn {
        width: 40px;
        height: 40px;
        border-radius: var(--radius-md);
        background: #f3f4f6;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6b7280;
        cursor: pointer;
        transition: all 0.2s;
        border: none;
    }

    .pc-admin-btn:hover {
        background: #e5e7eb;
        color: #374151;
    }

    /* Content Container */
    .pc-content-container {
        padding: 32px;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Ana Kategori Grid - PC */
    .kategori-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
        gap: 24px !important;
    }

    .ana-kategori-card {
        height: 200px !important;
        border-radius: var(--radius-xl) !important;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .ana-kategori-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .ana-kategori-content {
        padding: 28px;
        z-index: 2;
    }

    .ana-kategori-content h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .ana-kategori-img-container {
        width: 200px;
    }

    .ana-kategori-img {
        transition: transform 0.5s ease;
    }

    .ana-kategori-card:hover .ana-kategori-img {
        transform: scale(1.1) rotate(3deg);
    }

    /* Stats Bar */
    .pc-stats-bar {
        display: flex;
        gap: 16px;
        margin-bottom: 32px;
    }

    .stat-card {
        background: white;
        padding: 20px 24px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        display: flex;
        align-items: center;
        gap: 16px;
        flex: 1;
        min-width: 200px;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .stat-icon.blue { background: #dbeafe; color: #1e40af; }
    .stat-icon.green { background: #d1fae5; color: #065f46; }
    .stat-icon.orange { background: #ffedd5; color: #9a3412; }
    .stat-icon.purple { background: #f3e8ff; color: #6b21a8; }

    .stat-content h4 {
        font-size: 24px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 4px;
    }

    .stat-content p {
        font-size: 14px;
        color: #6b7280;
    }

    /* Alt Kategoriler - PC */
    #alt-kategoriler {
        background: var(--bg-gray) !important;
    }

    .pc-banner {
        height: 280px;
        border-radius: var(--radius-xl);
        overflow: hidden;
        margin-bottom: 32px;
        position: relative;
        box-shadow: var(--shadow-md);
    }

    .pc-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pc-banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 48px;
    }

    .pc-banner-tag {
        display: inline-block;
        padding: 6px 12px;
        background: var(--primary-color);
        color: white;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 20px;
        margin-bottom: 16px;
        width: fit-content;
    }

    .pc-banner-title {
        font-size: 42px;
        font-weight: 700;
        color: white;
        margin-bottom: 12px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .pc-banner-subtitle {
        font-size: 18px;
        color: rgba(255,255,255,0.9);
    }

    /* Alt Kategori Grid */
    .alt-kategori-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }

    .alt-kategori-card {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .alt-kategori-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .alt-kategori-img-container {
        height: 180px !important;
    }

    .alt-kategori-content h3 {
        font-size: 20px;
    }

    /* Ürünler - PC */
    #urunler {
        background: var(--bg-gray) !important;
    }

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

    .urunler-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 24px;
    }

    .urun-item {
        background: white;
        border-radius: var(--radius-xl);
        padding: 20px;
        box-shadow: var(--shadow-sm);
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .urun-item:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .urun-img {
        width: 100px;
        height: 100px;
        border-radius: var(--radius-md);
        object-fit: cover;
    }

    .urun-content {
        flex: 1;
    }

    .urun-content h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #111827;
    }

    .urun-content p {
        font-size: 14px;
        color: #6b7280;
        margin-bottom: 12px;
        line-height: 1.5;
    }

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

    .urun-add-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--primary-color);
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
        font-size: 18px;
    }

    .urun-add-btn:hover {
        background: var(--primary-hover);
        transform: scale(1.1);
    }

    /* Breadcrumb */
    .pc-breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
        font-size: 14px;
        color: #6b7280;
    }

    .pc-breadcrumb a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .pc-breadcrumb a:hover {
        text-decoration: underline;
    }

    .pc-breadcrumb i {
        font-size: 12px;
    }

    /* Bottom Nav - Hidden on PC */
    #customer-bottom-nav {
        display: none !important;
    }

    /* Mobile elements - Hidden on PC */
    #open-menu-btn,
    #close-menu-btn,
    .fullscreen-menu,
    #mobile-logo,
    #mobile-logo-text,
    #mobile-app-name,
    #mobile-slogan {
        display: none !important;
    }

    /* PC Only Elements */
    .pc-only {
        display: block !important;
    }
}

@media (max-width: 1023px) {
    .pc-only {
        display: none !important;
    }
    
    #desktop-sidebar {
        display: none !important;
    }
}

/* ==================== MOBILE STYLES (Original) ==================== */

@media (max-width: 1023px) {
    .kategori-grid {
        display: flex;
        flex-direction: column;
        gap: var(--card-gap-mobile, var(--card-gap, 0px));
    }

    .ana-kategori-card {
        height: var(--ana-card-height, 160px);
        background: var(--ana-kategori-bg, white);
        border-radius: 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .ana-kategori-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .ana-kategori-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 24px;
        z-index: 2;
    }

    .ana-kategori-img-container {
        position: relative;
        width: 160px;
        height: 100%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .ana-kategori-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .ana-kategori-card:hover .ana-kategori-img {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Resim Efektleri */
.effect-gradient-mask .ana-kategori-img {
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

.effect-smart-gradient .ana-kategori-card {
    position: relative;
}

.effect-smart-gradient .ana-kategori-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--smart-gradient, linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%));
    z-index: -1;
    filter: blur(40px) saturate(1.5);
    opacity: 0.8;
    transform: scale(1.2);
}

/* Alt Kategori Kartları */
.alt-kategori-card {
    background: var(--alt-kategori-bg, white);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.alt-kategori-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.alt-kategori-img-container {
    position: relative;
    height: var(--alt-card-height, 140px);
    overflow: hidden;
}

.alt-kategori-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alt-kategori-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}

.alt-kategori-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: white;
}

/* Top Banner */
.top-banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 24px;
}

.top-banner-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.top-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

/* Ürün Listesi */
.urun-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--urun-bg, white);
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.2s;
    max-width: 100%;
}

.urun-item:hover {
    background: #f9fafb;
}

.urun-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-left: auto;
}

/* Sos Badge */
.sos-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Hamburger */
.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #374151;
    margin: 5px 0;
    border-radius: 2px;
}

/* Desktop Sidebar - Mobile Hidden */
.sidebar-cat-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.2s;
    margin-bottom: 8px;
    cursor: pointer;
}

.sidebar-cat-btn:hover,
.sidebar-cat-btn.active {
    background: #000;
    color: white;
}

.sidebar-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.05);
    display: none;
}

.bottom-nav.visible {
    display: flex;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
}

.bottom-nav-item.active {
    color: var(--primary-color);
}

.bottom-nav-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
}

.bottom-nav-icon-fa {
    font-size: 20px;
}

/* Logo */
.logo-square {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slogan-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

/* PC View Icon */
.pc-view-icon {
    display: none;
}

/* Sos Popup */
.sos-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sos-popup-overlay.active {
    display: flex;
}

.sos-popup {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 24px;
    animation: popupSlide 0.3s ease;
}

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

.sos-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.sos-option:hover {
    border-color: var(--primary-color);
    background: #ecfdf5;
}

.sos-option.selected {
    border-color: var(--primary-color);
    background: #d1fae5;
}

.sos-option-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.sos-option.selected .sos-option-checkbox {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Admin Button */
.admin-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-btn-primary {
    background: var(--primary-color);
    color: white;
}

.admin-btn-primary:hover {
    background: var(--primary-hover);
}

.admin-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.admin-btn-secondary:hover {
    background: #e5e7eb;
}

/* Utility */
.hidden {
    display: none !important;
}

/* Quick View Modal - PC Only */
.quick-view-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(4px);
}

.quick-view-modal.active {
    display: flex;
}

.quick-view-content {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.quick-view-image {
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.quick-view-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.quick-view-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.quick-view-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.quick-view-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
    flex: 1;
}

.quick-view-actions {
    display: flex;
    gap: 16px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-selector button {
    width: 48px;
    height: 48px;
    border: none;
    background: #f9fafb;
    cursor: pointer;
    font-size: 18px;
    color: #374151;
}

.quantity-selector button:hover {
    background: #f3f4f6;
}

.quantity-selector span {
    width: 48px;
    text-align: center;
    font-weight: 600;
}

.add-to-cart-btn {
    flex: 1;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

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

/* Floating Cart - PC */
.floating-cart {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 50;
}

.floating-cart-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: toastSlide 0.3s ease;
}

@keyframes toastSlide {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.toast-icon.success { background: #d1fae5; color: #065f46; }
.toast-icon.error { background: #fee2e2; color: #991b1b; }

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* ==================== CART STYLES ==================== */

.cart-drawer.active {
    pointer-events: all;
    opacity: 1;
}
.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}
.cart-drawer-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}
.cart-drawer.active .cart-drawer-content {
    transform: translateX(0);
}
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}
.cart-drawer-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}
.cart-drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cart-drawer-close:hover {
    background: #d1d5db;
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}
.cart-empty i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 16px;
}
.cart-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #f9fafb;
    border-radius: 16px;
    margin-bottom: 12px;
}
.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 16px;
}
.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #d1d5db;
}
.cart-total span:last-child {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
}
.cart-order-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
.cart-clear-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #ef4444;
    border: 1px solid #fecaca;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.floating-cart-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}
@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.cart-bounce {
    animation: cartBounce 0.5s ease;
}

@media (max-width: 480px) {
    .floating-cart {
        bottom: 90px;
        right: 16px;
    }
    .floating-cart-btn {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
}
@media (min-width: 1024px) {
    .floating-cart {
        bottom: 32px;
        right: 32px;
    }
}

/* ==================== MODERN CART STYLES ==================== */

/* Cart Drawer - Full Responsive */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
    pointer-events: all;
    opacity: 1;
}

.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Cart Content - Mobile First */
.cart-drawer-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
}

.cart-drawer.active .cart-drawer-content {
    transform: translateX(0);
}

/* Tablet ve Desktop */
@media (min-width: 480px) {
    .cart-drawer-content {
        max-width: 420px;
    }
}

@media (min-width: 768px) {
    .cart-drawer-content {
        max-width: 480px;
    }
}

/* Header */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-icon {
    font-size: 24px;
    opacity: 0.9;
}

.cart-drawer-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.item-count-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.cart-drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
}

.cart-drawer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Body - Scrollable Area */
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f8fafc;
}

/* Empty State */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.cart-empty i {
    font-size: 80px;
    color: #cbd5e1;
    margin-bottom: 20px;
    opacity: 0.6;
}

.cart-empty p {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

/* Cart Items - Modern Design */
.cart-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
    border: 1px solid #f1f5f9;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 14px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

/* ÜRÜN ADI VE MİKTAR SATIRI - YAN YANA */
.cart-item-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.cart-item-header-row h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* RENKLİ MİKTAR BADGE - SAĞDA */
.quantity-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.cart-item-sos {
    font-size: 12px;
    color: #10b981;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #10b981;
}

/* SAĞA DAYALI RENKLİ SİLME BUTONU */
.cart-item-actions {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

/* Silme Butonu - Kırmızı Renkli */
.btn-remove {
    width: 44px;
    height: 44px;
    border: none;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-remove:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-remove:active {
    transform: scale(0.95);
}

/* Footer */
.cart-drawer-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.cart-summary-row .summary-label {
    color: #64748b;
    font-weight: 500;
}

.cart-summary-row .summary-value {
    color: #1e293b;
    font-weight: 600;
}

.cart-summary-row.total {
    padding-top: 12px;
    border-top: 2px dashed #e2e8f0;
    margin-top: 12px;
    margin-bottom: 20px;
}

.cart-summary-row.total .summary-label {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.cart-summary-row.total .summary-value {
    font-size: 24px;
    font-weight: 800;
    color: #10b981;
}

/* WhatsApp Sipariş Butonu */
.cart-order-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.cart-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

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

/* Temizle Butonu */
.cart-clear-btn {
    width: 100%;
    padding: 14px;
    background: #f8fafc;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.cart-clear-btn:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
}

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 50;
}

.floating-cart-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 0 0 4px rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.floating-cart-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5), 0 0 0 6px rgba(16, 185, 129, 0.15);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 28px;
    height: 28px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    border: 2px solid white;
}

/* Animasyon */
@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.1); }
}

.cart-bounce {
    animation: cartBounce 0.6s ease;
}

/* Mobil Özelleştirmeler */
@media (max-width: 480px) {
    .cart-drawer-header {
        padding: 14px 16px;
    }
    
    .cart-drawer-header h3 {
        font-size: 18px;
    }
    
    .cart-item {
        padding: 12px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-header-row h4 {
        font-size: 14px;
    }
    
    .quantity-badge {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .btn-remove {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .floating-cart {
        bottom: 90px;
        right: 16px;
    }
    
    .floating-cart-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .cart-order-btn {
        padding: 16px;
        font-size: 16px;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 767px) {
    .cart-drawer-content {
        max-width: 400px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .floating-cart {
        bottom: 40px;
        right: 40px;
    }
    
    .cart-drawer-content {
        max-width: 450px;
    }
}

/* Safe Area için iPhone X+ */
@supports (padding: max(0px)) {
    .cart-drawer-footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* ==================== MOBILE/TABLET CART FIX ==================== */

/* Mobil ve tablet için sepet butonu görünürlüğü */
@media (max-width: 1023px) {
    .floating-cart {
        display: block !important;
        position: fixed !important;
        bottom: 90px !important;
        right: 16px !important;
        z-index: 9999 !important;
    }
    
    .floating-cart-btn {
        width: 60px !important;
        height: 60px !important;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 22px !important;
        cursor: pointer !important;
        position: relative !important;
    }
    
    .cart-badge {
        position: absolute !important;
        top: -4px !important;
        right: -4px !important;
        min-width: 24px !important;
        height: 24px !important;
        background: #ef4444 !important;
        color: white !important;
        border-radius: 50% !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 6px !important;
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
        border: 2px solid white !important;
    }
}

/* Tablet için özel ayarlar */
@media (min-width: 481px) and (max-width: 1023px) {
    .floating-cart {
        bottom: 100px !important;
        right: 24px !important;
    }
    
    .floating-cart-btn {
        width: 64px !important;
        height: 64px !important;
        font-size: 24px !important;
    }
}

/* Sepet içinde miktar kontrol butonları */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-quantity {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-quantity:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-quantity:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.6;
}

.quantity-value {
    min-width: 32px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
}

/* Animasyon */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


/* ==================== CART QUANTITY CONTROLS ==================== */

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-quantity {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-quantity:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-quantity:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.6;
}

.quantity-value {
    min-width: 32px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
}

/* ==================== MOBILE/TABLET CART FIX ==================== */

@media (max-width: 1023px) {
    .floating-cart {
        display: block !important;
        position: fixed !important;
        bottom: 90px !important;
        right: 16px !important;
        z-index: 9999 !important;
    }
    
    .floating-cart-btn {
        width: 60px !important;
        height: 60px !important;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 22px !important;
        cursor: pointer !important;
        position: relative !important;
    }
    
    .cart-badge {
        position: absolute !important;
        top: -4px !important;
        right: -4px !important;
        min-width: 24px !important;
        height: 24px !important;
        background: #ef4444 !important;
        color: white !important;
        border-radius: 50% !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 6px !important;
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
        border: 2px solid white !important;
    }
}

@media (min-width: 481px) and (max-width: 1023px) {
    .floating-cart {
        bottom: 100px !important;
        right: 24px !important;
    }
    
    .floating-cart-btn {
        width: 64px !important;
        height: 64px !important;
        font-size: 24px !important;
    }
}

/* Ürün sepet butonu */
.urun-add-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.urun-add-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.urun-add-cart-btn:active {
    transform: scale(0.95);
}

/* ==================== CART SAUCE BADGES ==================== */

.cart-item-sos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

.sos-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.sos-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
}

.cart-item-price .base-price {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.cart-item-price .sos-price {
    font-size: 12px;
    color: #f59e0b;
    font-weight: 500;
}

.cart-item-price .total-price {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
}

/* Eski sos stilini gizle */
.cart-item-sos {
    display: none;
}

@media (max-width: 480px) {
    .sos-badge-item {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .cart-item-price .total-price {
        font-size: 16px;
    }
}