
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #fafafa; color: #333; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; }

        /* Announcement Bar */
        .announcement-bar {
            background: #111;
            color: #fff;
            text-align: center;
            padding: 10px 16px;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 24px;
            flex-wrap: wrap;
            overflow: hidden;
        }
        .announcement-bar-inner {
            display: flex;
            align-items: center;
            animation: announcement-scroll 30s linear infinite;
            gap: 32px;
            padding: 0;
            white-space: nowrap;
            justify-content: flex-start;
        }
        .announcement-bar span { display: inline-flex; align-items: center; gap: 6px; }
        .announcement-bar .highlight { color: #ff6b9d; font-weight: 600; }
        @keyframes announcement-scroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Header */
        header { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .logo { font-size: 26px; font-weight: bold; color: #e91e63; letter-spacing: -0.5px; }
        .logo span { color: #333; }

        /* Mega Menu Nav */
        .main-nav { display: flex; gap: 0; align-items: center; }
        .main-nav > li { list-style: none; position: relative; }
        .main-nav > li > a {
            display: block;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .main-nav > li > a:hover, .main-nav > li:hover > a { color: #e91e63; }

        /* Dropdown mega menu */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            padding: 20px;
            min-width: 800px;
            z-index: 200;
            gap: 32px;
        }
        .main-nav > li:hover .dropdown { display: flex; }
        .dropdown-col { min-width: 160px; }
        .dropdown-col h4 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #e91e63;
            margin-bottom: 10px;
            padding-bottom: 6px;
            border-bottom: 1px solid #f0f0f0;
        }
        .dropdown-col ul { list-style: none; }
        .dropdown-col li { margin-bottom: 6px; }
        .dropdown-col a { font-size: 13px; color: #555; transition: color 0.15s; }
        .dropdown-col a:hover { color: #e91e63; }
        .dropdown-banner {
            background: linear-gradient(135deg, #ffe0ec, #fff0f5);
            border-radius: 10px;
            padding: 16px;
            text-align: center;
            min-width: 200px;
        }
        .dropdown-banner img { border-radius: 8px; margin-bottom: 8px; }
        .dropdown-banner p { font-size: 13px; font-weight: 600; color: #333; }
        .dropdown-banner span { font-size: 11px; color: #e91e63; }

        /* Header actions */
        .header-actions { display: flex; gap: 12px; align-items: center; }
        .search-form { display: flex; }
        .search-form input {
            padding: 8px 14px;
            border: 1px solid #ddd;
            border-radius: 20px 0 0 20px;
            font-size: 13px;
            width: 200px;
            outline: none;
        }
        .search-form button {
            background: #e91e63;
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 0 20px 20px 0;
            cursor: pointer;
            font-size: 13px;
        }
        .cart-btn {
            background: #e91e63;
            color: #fff;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .cart-btn:hover { background: #c2185b; }

        /* Hero Banner */
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #fff;
            padding: 80px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(233,30,99,0.15) 0%, transparent 60%);
        }
        .hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
        .hero-badge {
            display: inline-block;
            background: rgba(233,30,99,0.2);
            border: 1px solid rgba(233,30,99,0.4);
            color: #ff6b9d;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.1;
        }
        .hero h1 span { color: #e91e63; }
        .hero p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
        .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn-primary {
            background: #e91e63;
            color: #fff;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            display: inline-block;
            transition: background 0.2s, transform 0.2s;
        }
        .btn-primary:hover { background: #c2185b; transform: translateY(-2px); }
        .btn-secondary {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            color: #fff;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            display: inline-block;
            backdrop-filter: blur(8px);
            transition: background 0.2s;
        }
        .btn-secondary:hover { background: rgba(255,255,255,0.2); }
        .hero-tags { margin-top: 40px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .hero-tag { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }

        /* Promo Strip */
        .promo-strip {
            background: #fff;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .promo-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 16px;
            border-right: 1px solid #f0f0f0;
            font-size: 13px;
        }
        .promo-item:last-child { border-right: none; }
        .promo-icon { font-size: 24px; }
        .promo-item strong { display: block; font-size: 14px; color: #333; margin-bottom: 2px; }
        .promo-item span { color: #888; }

        /* Section common */
        .section { max-width: 1400px; margin: 0 auto; padding: 60px 24px; }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 32px;
        }
        .section-title { font-size: 28px; font-weight: 700; }
        .section-subtitle { font-size: 14px; color: #888; margin-top: 4px; }
        .section-link { font-size: 14px; color: #e91e63; font-weight: 500; display: flex; align-items: center; gap: 4px; }
        .section-link:hover { text-decoration: underline; }

        /* Product Grid */
        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
        .product-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            display: block;
        }
        .product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
        .product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f5f5f5; }
        .product-info { padding: 14px; }
        .product-title {
            font-size: 14px; font-weight: 500; margin-bottom: 6px;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
            overflow: hidden; height: 40px; line-height: 1.3;
        }
        .product-price { font-size: 16px; font-weight: 700; color: #e91e63; display: flex; align-items: center; gap: 6px; }
        .product-compare { font-size: 13px; color: #aaa; text-decoration: line-through; font-weight: 400; }
        .product-badges { display: flex; gap: 4px; margin-top: 6px; flex-wrap: wrap; }
        .badge { font-size: 10px; padding: 2px 6px; border-radius: 4px; font-weight: 500; }
        .badge-best { background: #fff3e0; color: #e65100; }
        .badge-new { background: #e8f5e9; color: #2e7d32; }
        .badge-sale { background: #ffebee; color: #c62828; }

        /* Features */
        .features { background: #fff; padding: 60px 24px; }
        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        .feature-item { text-align: center; padding: 24px; }
        .feature-icon { font-size: 40px; margin-bottom: 16px; }
        .feature-item h3 { font-size: 16px; margin-bottom: 8px; }
        .feature-item p { font-size: 13px; color: #888; line-height: 1.5; }

        /* Category Grid */
        .category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
        .category-card {
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
            transition: transform 0.2s, box-shadow 0.2s;
            display: block;
            border: 1px solid #f5f5f5;
        }
        .category-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-color: #e91e63; }
        .category-emoji { font-size: 36px; margin-bottom: 10px; display: block; }
        .category-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
        .category-card span { font-size: 12px; color: #999; }

        /* Blog preview */
        .blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.08); display: block; transition: transform 0.2s; }
        .blog-card:hover { transform: translateY(-3px); }
        .blog-card-img { width: 100%; height: 160px; background: linear-gradient(135deg, #fce4ec, #f8bbd0); display: flex; align-items: center; justify-content: center; font-size: 40px; }
        .blog-card-body { padding: 16px; }
        .blog-card-body h3 { font-size: 14px; font-weight: 500; line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .blog-card-body span { font-size: 12px; color: #999; }

        /* Brands */
        .brands { background: #fafafa; text-align: center; }
        .brands p { font-size: 13px; color: #999; margin-bottom: 24px; }
        .brands-row { display: flex; gap: 32px; justify-content: center; align-items: center; flex-wrap: wrap; }
        .brand-item { font-size: 16px; font-weight: 600; color: #aaa; letter-spacing: 1px; }

        /* Footer */
        footer { background: #1a1a2e; color: rgba(255,255,255,0.6); padding: 60px 24px 30px; }
        .footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
        .footer-brand h3 { font-size: 22px; color: #fff; margin-bottom: 12px; }
        .footer-brand h3 span { color: #e91e63; }
        .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
        .footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 8px; }
        .footer-col a { font-size: 13px; transition: color 0.2s; }
        .footer-col a:hover { color: #e91e63; }
        .footer-bottom { max-width: 1400px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 12px; }

        /* Pagination */
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
        .pagination a, .pagination span { padding: 8px 14px; border-radius: 6px; font-size: 14px; }
        .pagination a { background: #fff; color: #333; }
        .pagination a:hover { background: #fce4ec; }
        .pagination .current { background: #e91e63; color: #fff; }

        /* Sidebar */
        .page-wrapper { max-width: 1400px; margin: 0 auto; padding: 20px 24px; display: flex; gap: 30px; }
        .sidebar { width: 220px; flex-shrink: 0; }
        .sidebar h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 12px; }
        .sidebar ul { list-style: none; }
        .sidebar li { margin-bottom: 6px; }
        .sidebar a { display: block; padding: 6px 12px; border-radius: 6px; font-size: 14px; color: #555; transition: all 0.2s; }
        .sidebar a:hover, .sidebar a.active { background: #fce4ec; color: #e91e63; }
        .main-content { flex: 1; min-width: 0; }

        /* Flash messages */
        .flash { padding: 12px 20px; margin-bottom: 20px; border-radius: 8px; font-size: 14px; max-width: 1400px; margin: 0 auto 20px; }
        .flash.success { background: #e8f5e9; color: #2e7d32; }
        .flash.error { background: #ffebee; color: #c62828; }

        /* Responsive */
        @media (max-width: 1024px) {
            .category-grid { grid-template-columns: repeat(3, 1fr); }
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-inner { grid-template-columns: 1fr 1fr; }
            .promo-strip { grid-template-columns: repeat(2, 1fr); }
            .dropdown { min-width: 600px; }
        }
        /* ========== Mobile Hamburger ========== */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 36px;
            height: 36px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: #333;
            transition: all 0.3s;
            border-radius: 2px;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* Mobile Drawer */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }
        .mobile-nav-overlay.active { display: block; }

        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            left: -85%;
            width: 85%;
            max-width: 340px;
            height: 100%;
            background: #fff;
            overflow-y: auto;
            z-index: 1000;
            transition: left 0.3s ease;
            padding-bottom: 40px;
        }
        .mobile-nav-drawer.active { left: 0; }

        .mobile-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            border-bottom: 1px solid #eee;
        }
        .mobile-nav-header .logo { font-size: 22px; }
        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            line-height: 1;
        }

        .mobile-nav-menu { list-style: none; padding: 0; margin: 0; }
        .mobile-nav-menu > li { border-bottom: 1px solid #f5f5f5; }
        .mobile-nav-menu > li > a {
            display: block;
            padding: 13px 16px;
            font-size: 15px;
            color: #333;
            font-weight: 500;
        }
        .mobile-nav-menu > li > a:hover { background: #fce4ec; color: #e91e63; }

        /* Accordion */
        .mobile-nav-submenu {
            display: none;
            padding: 0 0 8px 0;
            background: #fafafa;
        }
        .mobile-nav-submenu.active { display: block; }
        .mobile-nav-submenu a {
            display: block;
            padding: 9px 16px 9px 28px;
            font-size: 13px;
            color: #555;
        }
        .mobile-nav-submenu a:hover { color: #e91e63; }

        .mobile-nav-arrow {
            float: right;
            color: #999;
            font-size: 12px;
            margin-top: 2px;
            transition: transform 0.2s;
        }
        .mobile-nav-arrow.rotated { transform: rotate(180deg); }

        @media (max-width: 768px) {
            .hamburger { display: flex; }
        }

        @media (max-width: 768px) {
            .main-nav { display: none; }
            .category-grid { grid-template-columns: repeat(2, 1fr); }
            .blog-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr 1fr; }
            .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .hero h1 { font-size: 32px; }
            .footer-inner { grid-template-columns: 1fr; }
            .page-wrapper { flex-direction: column; }
            .sidebar { width: 100%; }
            .sidebar ul { display: flex; flex-wrap: wrap; gap: 6px; }
            .promo-strip { grid-template-columns: 1fr 1fr; }
            .header-inner { height: auto; padding: 12px 16px; flex-wrap: wrap; gap: 8px; }
        }
    

.whatsapp-float-btn { position: fixed; bottom: 24px; right: 24px; z-index: 9999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.25); cursor: pointer; text-decoration: none; }
.whatsapp-float-btn:hover { background: #20ba5a; }
.whatsapp-float-btn svg { width: 30px; height: 30px; fill: #fff; }

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