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

        body {
            font-family: 'Poppins', 'Segoe UI', sans-serif;
            background: #f5f5f5;
            color: #2c2c2c;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #e0e0e0;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff6b00;
            border-radius: 10px;
        }

        /* Desktop Navbar */
        .desktop-nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            z-index: 1000;
            padding: 0.8rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(-100%);
            animation: slideDown 0.5s ease forwards;
        }

        @keyframes slideDown {
            to { transform: translateY(0); }
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .logo img {
            width: 145px;
            border-radius: 10px;
        }

        .logo span {
            font-size: 1.3rem;
            font-weight: 800;
            color: #ff6b00;
        }

        .desktop-menu {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .desktop-menu > div {
            position: relative;
        }

        .desktop-menu > div > a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            display: block;
            transition: 0.3s;
        }

        .desktop-menu > div > a:hover {
            color: #ff6b00;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: 0.3s;
            z-index: 100;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #eee;
        }

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

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            color: #555;
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.3s;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-menu a:hover {
            background: #fff4e8;
            color: #ff6b00;
            padding-left: 25px;
        }

        .mega-menu {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            padding: 2rem 5%;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: 0.3s;
            z-index: 999;
            border-bottom: 2px solid #ff6b00;
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        }

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

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

        .mega-col h4 {
            color: #ff6b00;
            margin-bottom: 1rem;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mega-col h4 img {
            width: 25px;
            height: 25px;
            border-radius: 5px;
        }

        .mega-col a {
            display: block;
            color: #666;
            text-decoration: none;
            font-size: 0.8rem;
            padding: 6px 0;
            transition: 0.3s;
        }

        .mega-col a:hover {
            color: #ff6b00;
            padding-left: 5px;
        }

        /* Mobile Navbar */
        .mobile-nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            z-index: 1000;
            padding: 0.8rem 5%;
            display: none;
            justify-content: space-between;
            align-items: center;
        }

        .menu-btn {
            background: #ff6b00;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .menu-btn span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: 0.3s;
        }

        .menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        .side-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: white;
            z-index: 1001;
            padding: 80px 20px 20px;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
            overflow-y: auto;
            box-shadow: -5px 0 30px rgba(0,0,0,0.2);
        }

        .side-menu.open {
            right: 0;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

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

        .menu-category {
            margin-bottom: 1rem;
            border-radius: 12px;
            background: #f8f8f8;
        }

        .menu-category-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            cursor: pointer;
        }

        .menu-category-header img {
            width: 35px;
            height: 35px;
            border-radius: 8px;
        }

        .menu-category-header h3 {
            font-size: 0.95rem;
            flex: 1;
            color: #333;
        }

        .menu-category-header i {
            color: #ff6b00;
        }

        .subcategories {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding-left: 50px;
        }

        .menu-category.active .subcategories {
            max-height: 400px;
        }

        .subcategories a {
            display: block;
            padding: 8px 0;
            color: #666;
            text-decoration: none;
            font-size: 0.8rem;
        }

        /* ========== SLIDER STYLES - HAREKETLİ BACKGROUND ========== */
        .hero-slider {
            margin-top: 70px;
            width: 100%;
            height: 85vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
        }

        .swiper {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            position: relative;
            overflow: hidden;
        }

        /* Background Image with Parallax/Hareket efekti */
        .slide-bg {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            object-fit: cover;
            transition: transform 0.1s ease-out;
            will-change: transform;
        }

        /* Overlay - gradient */
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        /* Urun gorseli kapsayicisi + radial isik */
        .slide-product {
            position: absolute;
            z-index: 2;
            pointer-events: none;
        }

        .slide-product-glow {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 180%;
            aspect-ratio: 1 / 1;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(255, 174, 64, 0.9) 0%, rgba(255, 151, 34, 0.64) 22%, rgba(255, 140, 24, 0.35) 45%, rgba(255, 120, 20, 0.14) 62%, rgba(255, 120, 20, 0) 78%);
            filter: blur(10px);
            z-index: 1;
        }

        /* PNG seffaf gorsel */
        .slide-png {
            position: relative;
            z-index: 2;
            width: 100%;
            display: block;
            filter: none;
            animation: floatPng 5s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        /* Desktop'ta PNG büyük */
        @media (min-width: 1200px) {
            .slide-product {
                width: 420px;
            }
        }
        @media (min-width: 992px) and (max-width: 1199px) {
            .slide-product {
                width: 320px;
            }
        }
        @media (max-width: 991px) {
            .slide-product {
                width: 160px;
            }
        }

        @keyframes floatPng {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* PNG pozisyonları */
        .slide-product.position-right {
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            animation: floatPngRight 5s ease-in-out infinite;
        }
        .slide-product.position-left {
            left: 5%;
            top: 50%;
            transform: translateY(-50%);
            animation: floatPngLeft 5s ease-in-out infinite;
        }
        .slide-product.position-center {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        .slide-product.position-bottom {
            right: 8%;
            bottom: 15%;
            top: auto;
        }

        /* Ortak konum: Desktop'ta sağ-orta */
        @media (min-width: 992px) {
            .slide-product.position-right,
            .slide-product.position-left,
            .slide-product.position-center,
            .slide-product.position-bottom {
                left: auto;
                right: 5%;
                top: 50%;
                bottom: auto;
                transform: translateY(-50%);
                animation: floatPngRight 5s ease-in-out infinite;
            }
        }

        /* Ortak konum: Mobilde sağ-ust */
        @media (max-width: 991px) {
            .slide-product.position-right,
            .slide-product.position-left,
            .slide-product.position-center,
            .slide-product.position-bottom {
                left: auto;
                right: 4%;
                top: 12%;
                bottom: auto;
                transform: none;
                animation: floatPng 5s ease-in-out infinite;
            }
        }

        @keyframes floatPngRight {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(-15px); }
        }
        @keyframes floatPngLeft {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(15px); }
        }

        /* İçerik Konteynır */
        .slide-content-wrapper {
            position: absolute;
            bottom: 18%;
            left: 0;
            right: 0;
            z-index: 10;
            padding: 0 8%;
        }

        .slide-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b00, #ffaa00);
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(255,107,0,0.3);
            transform: translateX(-40px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
        }

        .swiper-slide-active .slide-badge {
            transform: translateX(0);
            opacity: 1;
        }

        .hot-seller-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #d32f2f;
            color: white;
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            margin-left: 1rem;
            box-shadow: 0 5px 20px rgba(211,47,47,0.3);
            transform: scale(0) rotate(-10deg);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s;
        }

        .swiper-slide-active .hot-seller-tag {
            transform: scale(1) rotate(0deg);
        }

        .hot-seller-tag i {
            animation: fireFlicker 1s ease-in-out infinite;
        }

        @keyframes fireFlicker {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .slide-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            text-shadow: 0 2px 15px rgba(0,0,0,0.4);
            margin-bottom: 0.5rem;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
            line-height: 1.2;
        }

        .swiper-slide-active .slide-title {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-subtitle {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 1.5rem;
            transform: translateY(40px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
        }

        .swiper-slide-active .slide-subtitle {
            transform: translateY(0);
            opacity: 1;
        }

        .price-sticker {
            display: inline-flex;
            align-items: baseline;
            gap: 12px;
            background: white;
            padding: 12px 28px;
            border-radius: 60px;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: translateX(60px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
        }

        .swiper-slide-active .price-sticker {
            transform: translateX(0);
            opacity: 1;
        }

        .current-price {
            font-size: 2rem;
            font-weight: 800;
            color: #ff6b00;
        }

        .old-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
        }

        .discount-badge {
            background: #ff6b00;
            color: white;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .button-group {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            transform: translateY(40px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s;
        }

        .swiper-slide-active .button-group {
            transform: translateY(0);
            opacity: 1;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff6b00, #ff8c00);
            border: none;
            padding: 14px 36px;
            border-radius: 50px;
            color: white;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255,107,0,0.4);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: scale(1.08) translateY(-3px);
            box-shadow: 0 12px 30px rgba(255,107,0,0.6);
        }

        .btn-secondary {
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
            border: 2px solid white;
            padding: 12px 32px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: #ff6b00;
            transform: scale(1.05);
        }

        .swiper-button-next, .swiper-button-prev {
            color: white;
            background: rgba(0,0,0,0.4);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: 0.3s;
        }
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: #ff6b00;
        }
        .swiper-pagination-bullet {
            background: white;
            opacity: 0.6;
        }
        .swiper-pagination-bullet-active {
            background: #ff6b00;
            opacity: 1;
        }

        @media (max-width: 992px) {
            .desktop-nav { display: none; }
            .mobile-nav { display: flex; }
            .hero-slider { height: 70vh; min-height: 500px; }
            .slide-title { font-size: 1.8rem; }
            .current-price { font-size: 1.3rem; }
            .price-sticker { padding: 8px 18px; }
            .btn-primary, .btn-secondary { padding: 10px 20px; font-size: 0.85rem; }
        }

        @media (min-width: 993px) {
            .mobile-nav, .side-menu, .overlay { display: none; }
        }

        /* ========== TRENDYOL TARZI ÜRÜN KARTLARI ========== */
        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #2c2c2c;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #ff6b00;
            margin: 10px auto;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        .cat-card {
            background: white;
            border-radius: 16px;
            padding: 1.2rem;
            text-align: center;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }
        .cat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-color: #ff6b00;
        }
        .cat-card img {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            margin-bottom: 10px;
        }
        .cat-card h4 {
            font-size: 0.85rem;
            color: #333;
        }

        /* TRENDYOL STYLE PRODUCT CARDS */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            border: 1px solid #eee;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        }

        .favorite-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid #ececec;
            background: rgba(255,255,255,0.95);
            color: #9a9a9a;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: all 0.2s ease;
        }
        .favorite-btn:hover {
            color: #ff6b00;
            border-color: #ffd3b0;
        }
        .favorite-btn.active {
            color: #ff3d57;
            border-color: #ffd1d7;
            background: #fff5f7;
        }

        /* Badge Etiketler */
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .badge {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        .badge-installment { background: #ff6b00; color: white; }
        .badge-shipping { background: #2e7d32; color: white; }
        .badge-popular { background: #d32f2f; color: white; }
        .badge-ranked { background: #1565c0; color: white; }

        .product-ribbon {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #ffeb3b;
            color: #333;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            z-index: 2;
        }

        .product-img-wrapper {
            position: relative;
            overflow: hidden;
            background: #fafafa;
            height: 220px;
        }
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 12px;
        }
        .best-price-tag {
            background: #e8f5e9;
            color: #2e7d32;
            font-size: 0.7rem;
            padding: 4px 8px;
            border-radius: 16px;
            display: inline-block;
            margin-bottom: 8px;
        }
        .product-title {
            font-size: 0.9rem;
            font-weight: 500;
            color: #333;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .likes-section {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 6px 0;
            font-size: 0.7rem;
            color: #666;
        }
        .likes-section i {
            color: #ff6b00;
        }
        .price-section {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin: 8px 0;
        }
        .current-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ff6b00;
        }
        .old-price {
            font-size: 0.8rem;
            color: #999;
            text-decoration: line-through;
        }
        .discount-badge-small {
            background: #ffeb3b;
            color: #333;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 12px;
        }
        .extra-discount {
            background: #fff3e0;
            color: #ff6b00;
            font-size: 0.7rem;
            padding: 4px 8px;
            border-radius: 16px;
            display: inline-flex;
            margin: 0;
            font-weight: 600;
        }
        .installment-info {
            font-size: 0.7rem;
            color: #2e7d32;
            background: #e8f5e9;
            padding: 4px 8px;
            border-radius: 8px;
            display: inline-flex;
            margin: 0;
        }
        .promo-rotator {
            margin-top: 6px;
            height: 26px;
            overflow: hidden;
        }
        .promo-track {
            display: flex;
            flex-direction: column;
            transform: translateY(0);
        }
        .promo-line {
            height: 26px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: max-content;
            max-width: 100%;
        }
        .buy-btn {
            background: #ff6b00;
            border: none;
            padding: 10px;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            margin-top: 12px;
            width: 100%;
            cursor: pointer;
            transition: 0.3s;
        }
        .buy-btn:hover {
            background: #e55a00;
        }

        .footer {
            background: #1a1a1a;
            color: white;
            padding: 2rem 5% 1rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-col h4 { color: #ff6b00; margin-bottom: 1rem; }
        .footer-col p, .footer-col a { color: #aaa; text-decoration: none; line-height: 1.8; font-size: 0.85rem; }
        .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #333; font-size: 0.8rem; }

        .mobile-fab-menu {
            display: none;
            position: fixed;
            right: 16px;
            bottom: 106px;
            z-index: 1002;
        }
        .fab-toggle {
            width: 56px;
            height: 56px;
            border: none;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b00, #ff8c00);
            color: white;
            font-size: 1.25rem;
            box-shadow: 0 10px 24px rgba(255, 107, 0, 0.35);
            cursor: pointer;
            transition: transform 0.25s ease;
        }
        .mobile-fab-menu.open .fab-toggle {
            transform: rotate(45deg);
        }
        .fab-list {
            list-style: none;
            position: absolute;
            right: 0;
            bottom: 68px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px);
            transition: all 0.25s ease;
        }
        .mobile-fab-menu.open .fab-list {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .fab-action {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            color: white;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 18px rgba(0,0,0,0.2);
            font-size: 1rem;
        }
        .fab-action.whatsapp { background: #25D366; }
        .fab-action.call { background: #ff6b00; }
        .fab-action.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

        .mobile-cart-bar {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1001;
            background: white;
            border-top: 1px solid #eee;
            box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
            padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
            gap: 10px;
            align-items: center;
            justify-content: space-between;
        }
        .cart-summary {
            min-width: 0;
        }
        .cart-label {
            font-size: 0.68rem;
            color: #666;
            margin-bottom: 2px;
            display: block;
        }
        .cart-price-row {
            display: flex;
            align-items: baseline;
            gap: 6px;
            flex-wrap: wrap;
        }
        .cart-old-price {
            font-size: 0.72rem;
            color: #9b9b9b;
            text-decoration: line-through;
        }
        .cart-new-price {
            font-size: 1.05rem;
            font-weight: 800;
            color: #ff6b00;
        }
        .cart-discount {
            font-size: 0.72rem;
            font-weight: 700;
            color: #2e7d32;
            background: #e8f5e9;
            border-radius: 12px;
            padding: 2px 8px;
        }
        .buy-now-btn {
            border: none;
            border-radius: 12px;
            background: #ff6b00;
            color: white;
            font-weight: 700;
            padding: 12px 18px;
            white-space: nowrap;
            cursor: pointer;
            box-shadow: 0 8px 16px rgba(255,107,0,0.3);
        }
        .buy-now-btn:hover {
            background: #e55a00;
        }

        @media (max-width: 992px) {
            .mobile-fab-menu { display: block; }
            .mobile-cart-bar { display: flex; }
            body { padding-bottom: 92px; }
        }
        
        .fade-up { opacity: 0; transform: translateY(20px); transition: all 0.5s ease; }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
