 :root {
            --bg: #f0f4f8;
            --surface: #ffffff;
            --primary: #1b4965;
            --primary-dark: #0d1b2a;
            --accent: #f77f00;
            --accent-hover: #e06f00;
            --text: #1a1a2e;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            --border: #e2e8f0;
            --success: #059669;
            --danger: #dc2626;
            --radius: 12px;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
            --transition: 0.2s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

        body {
            background: var(--bg);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
        }

        .skip-link {
            position: absolute; top: -100px; left: 0;
            background: var(--accent); color: white;
            padding: 10px 20px; z-index: 9999;
            font-weight: 600; text-decoration: none;
            border-radius: 0 0 8px 0;
            transition: top 0.2s;
        }
        .skip-link:focus { top: 0; }

        /* === TOP BAR === */
        .top-bar {
            background: var(--primary-dark);
            color: #94a3b8;
            font-size: 12px;
            padding: 6px 20px;
        }
        .top-bar-inner {
            max-width: 1400px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 8px;
        }
        .top-bar a { color: #94a3b8; text-decoration: none; }
        .top-bar a:hover { color: var(--accent); }
        .top-bar .admin-badge {
            background: var(--danger); color: white;
            padding: 2px 10px; border-radius: 20px;
            font-size: 11px; font-weight: 600;
            position: relative; display: inline-flex; align-items: center; gap: 5px;
            text-decoration: none;
        }
        .top-bar .admin-badge:hover { background: #b91c1c; color: white; }
        .top-bar .admin-badge .badge-dot {
            background: var(--accent); width: 7px; height: 7px;
            border-radius: 50%; display: inline-block;
        }

        /* === HEADER === */
        .header {
            background: var(--surface);
            padding: 12px 20px;
            position: sticky; top: 0; z-index: 100;
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .header-inner {
            max-width: 1400px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
            gap: 20px; flex-wrap: wrap;
        }
        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .logo-icon {
            width: 40px; height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 10px; display: flex; align-items: center; justify-content: center;
            font-size: 20px; color: white; flex-shrink: 0;
        }
        .logo-text h1 { font-size: 18px; font-weight: 800; color: var(--primary-dark); line-height: 1.2; }
        .logo-text span { font-size: 10px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

        .search-box {
            flex: 1; max-width: 480px; position: relative;
        }
        .search-box input {
            width: 100%; padding: 10px 44px 10px 16px;
            border: 2px solid var(--border); border-radius: 50px;
            font-size: 14px; font-family: inherit; outline: none;
            background: var(--bg); transition: border-color var(--transition), box-shadow var(--transition);
        }
        .search-box input:focus {
            border-color: var(--primary); background: white;
            box-shadow: 0 0 0 3px rgba(27,73,101,0.1);
        }
        .search-box button {
            position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
            width: 36px; height: 36px; border: none;
            background: var(--primary); border-radius: 50%;
            color: white; cursor: pointer; font-size: 16px;
            display: flex; align-items: center; justify-content: center;
            transition: background var(--transition);
        }
        .search-box button:hover { background: var(--accent); }

        .header-phone {
            display: flex; align-items: center; gap: 8px;
            text-decoration: none; color: inherit; white-space: nowrap;
        }
        .header-phone .phone-icon {
            width: 36px; height: 36px;
            background: rgba(5,150,105,0.1); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px;
        }
        .header-phone .phone-number { font-weight: 700; font-size: 14px; color: var(--primary-dark); }
        .header-phone .phone-label { font-size: 10px; color: var(--text-muted); }

        /* === NAV === */
        .nav {
            background: var(--primary);
            padding: 0 20px;
            overflow-x: auto; white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav::-webkit-scrollbar { display: none; }
        .nav-inner {
            max-width: 1400px; margin: 0 auto;
            display: flex; align-items: center; gap: 0;
        }
        .nav a {
            color: rgba(255,255,255,0.8); text-decoration: none;
            font-size: 13px; font-weight: 500;
            padding: 12px 16px; display: inline-block;
            border-bottom: 2px solid transparent;
            transition: all var(--transition);
        }
        .nav a:hover { color: white; background: rgba(255,255,255,0.05); }
        .nav a.active { color: var(--accent); border-bottom-color: var(--accent); }
        .nav-spacer { flex: 1; }

        .view-toggle {
            display: flex; gap: 4px; padding: 8px 16px;
        }
        .view-btn {
            background: rgba(255,255,255,0.1); border: none;
            color: rgba(255,255,255,0.7); width: 32px; height: 32px;
            border-radius: 8px; cursor: pointer; font-size: 14px;
            display: flex; align-items: center; justify-content: center;
            transition: all var(--transition);
        }
        .view-btn.active { background: var(--accent); color: white; }
        .view-btn:hover:not(.active) { background: rgba(255,255,255,0.2); color: white; }

        /* === HERO === */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a6f97 100%);
            padding: 50px 20px;
            position: relative; overflow: hidden;
        }
        .hero::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(247,127,0,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero::after {
            content: ''; position: absolute; bottom: -30%; left: -10%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-inner {
            max-width: 1400px; margin: 0 auto;
            position: relative; z-index: 1;
            display: flex; align-items: center; justify-content: space-between;
            gap: 30px; flex-wrap: wrap;
        }
        .hero-text { max-width: 600px; }
        .hero-text h2 {
            font-size: 32px; font-weight: 800; color: white;
            margin-bottom: 12px; line-height: 1.2;
        }
        .hero-text h2 span { color: var(--accent); }
        .hero-text p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 24px; max-width: 480px; }
        .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
        .btn {
            padding: 12px 24px; border-radius: 50px; font-size: 14px;
            font-weight: 600; font-family: inherit; cursor: pointer;
            text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
            transition: all var(--transition); border: none;
        }
        .btn-accent {
            background: var(--accent); color: white;
            box-shadow: 0 4px 15px rgba(247,127,0,0.3);
        }
        .btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(247,127,0,0.4); }
        .btn-outline {
            background: transparent; color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }
        .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.05); }

        .hero-stats {
            display: flex; gap: 30px;
        }
        .hero-stat { text-align: center; }
        .hero-stat-num { font-size: 28px; font-weight: 800; color: var(--accent); }
        .hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }

        /* === ADMIN NOTIFICATION === */
        .admin-notification {
            background: linear-gradient(90deg, #fef3c7, #fffbeb);
            border-bottom: 2px solid var(--accent);
            padding: 12px 20px; text-align: center;
            font-size: 14px; color: #92400e;
        }
        .admin-notification a { color: var(--accent-hover); font-weight: 700; text-decoration: underline; }

        /* === BREADCRUMB === */
        .breadcrumb {
            max-width: 1400px; margin: 0 auto;
            padding: 14px 20px;
            font-size: 12px; color: var(--text-muted);
            display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
        }
        .breadcrumb a { color: var(--primary); text-decoration: none; }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--text-light); }

        /* === MAIN LAYOUT === */
        .container { max-width: 1400px; margin: 0 auto; padding: 0 20px 40px; }

        .main-layout {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 24px;
        }

        /* === SIDEBAR === */
        .sidebar { display: flex; flex-direction: column; gap: 20px; }
        .sidebar-card {
            background: var(--surface); border-radius: var(--radius);
            padding: 20px; box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
        }
        .sidebar-card h3 {
            font-size: 14px; font-weight: 700; color: var(--primary-dark);
            margin-bottom: 14px; padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: flex; align-items: center; gap: 8px;
        }
        .cat-list { list-style: none; }
        .cat-list li { margin-bottom: 4px; }
        .cat-list a {
            text-decoration: none; color: var(--text);
            display: flex; justify-content: space-between; align-items: center;
            padding: 8px 12px; border-radius: 8px;
            font-size: 13px; font-weight: 500;
            transition: all var(--transition);
        }
        .cat-list a:hover { background: var(--bg); color: var(--primary); }
        .cat-list a.active { background: var(--primary); color: white; }
        .cat-count {
            font-size: 11px; font-weight: 600;
            background: var(--bg); padding: 2px 8px;
            border-radius: 20px; color: var(--text-muted);
        }
        .cat-list a.active .cat-count { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }

        .sidebar-stat {
            display: flex; align-items: center; gap: 12px;
            padding: 10px 0; border-bottom: 1px solid var(--border);
        }
        .sidebar-stat:last-child { border-bottom: none; }
        .sidebar-stat-icon {
            width: 36px; height: 36px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; flex-shrink: 0;
        }
        .sidebar-stat-num { font-size: 18px; font-weight: 700; color: var(--primary-dark); }
        .sidebar-stat-label { font-size: 11px; color: var(--text-muted); }

        /* === TOOLBAR === */
        .toolbar {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
        }
        .toolbar-count { font-size: 13px; color: var(--text-muted); }
        .toolbar-count strong { color: var(--text); font-weight: 700; }
        .sort-select {
            padding: 8px 14px; border: 1px solid var(--border);
            border-radius: 8px; font-size: 13px; font-family: inherit;
            color: var(--text); background: var(--surface); cursor: pointer;
            outline: none;
        }
        .sort-select:focus { border-color: var(--primary); }

        /* === PRODUCT GRID === */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 18px;
        }
        .products-grid.list-view {
            grid-template-columns: 1fr;
        }

        .product-card {
            background: var(--surface); border-radius: var(--radius);
            overflow: hidden; box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            cursor: pointer; position: relative;
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .product-badge {
            position: absolute; top: 10px; left: 10px; z-index: 2;
            padding: 3px 10px; border-radius: 20px;
            font-size: 10px; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .badge-sale { background: var(--danger); color: white; }
        .badge-new { background: var(--success); color: white; }

        .product-img {
            height: 180px; background: var(--bg);
            display: flex; align-items: center; justify-content: center;
            overflow: hidden; position: relative;
        }
        .product-img img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.4s ease;
        }
        .product-card:hover .product-img img { transform: scale(1.05); }
        .product-img .placeholder { font-size: 44px; color: var(--text-light); }

        .quick-view-btn {
            position: absolute; bottom: 10px; right: 10px; z-index: 2;
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(13,27,42,0.8); color: white; border: none;
            cursor: pointer; font-size: 16px; display: flex;
            align-items: center; justify-content: center;
            opacity: 0; transform: translateY(8px);
            transition: all var(--transition);
            backdrop-filter: blur(4px);
        }
        .product-card:hover .quick-view-btn { opacity: 1; transform: translateY(0); }
        .quick-view-btn:hover { background: var(--accent); }

        .product-body { padding: 14px; }
        .product-cat {
            font-size: 10px; font-weight: 600; color: var(--primary);
            text-transform: uppercase; letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        .product-name {
            font-size: 14px; font-weight: 600; color: var(--primary-dark);
            line-height: 1.4; margin-bottom: 8px;
            display: -webkit-box; -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; overflow: hidden;
        }
        .product-pricing { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
        .product-price { font-size: 17px; font-weight: 800; color: var(--danger); }
        .product-old-price { font-size: 12px; color: var(--text-light); text-decoration: line-through; }

        .product-stock-badge {
            display: inline-flex; align-items: center; gap: 4px;
            font-size: 11px; font-weight: 600; margin-bottom: 10px;
        }
        .product-stock-badge.in { color: var(--success); }
        .product-stock-badge.out { color: var(--danger); }

        .product-actions { display: flex; gap: 8px; }
        .btn-wa {
            flex: 1; padding: 8px 12px;
            background: #25d366; color: white; border: none;
            border-radius: 8px; font-size: 12px; font-weight: 600;
            font-family: inherit; cursor: pointer;
            display: flex; align-items: center; justify-content: center; gap: 5px;
            transition: background var(--transition);
        }
        .btn-wa:hover { background: #1da851; }
        .btn-details {
            padding: 8px 12px;
            background: var(--primary); color: white; border: none;
            border-radius: 8px; font-size: 12px; font-weight: 600;
            font-family: inherit; cursor: pointer;
            transition: background var(--transition);
        }
        .btn-details:hover { background: var(--primary-dark); }

        /* List view */
        .list-view .product-card {
            display: grid;
            grid-template-columns: 140px 1fr;
        }
        .list-view .product-img { height: 100%; min-height: 140px; }
        .list-view .product-name {
            -webkit-line-clamp: unset;
            display: block;
        }
        .list-view .product-body {
            display: flex; flex-direction: column; justify-content: center;
        }

        /* === PAGINATION === */
        .pagination {
            margin-top: 30px; display: flex;
            justify-content: center; gap: 6px; flex-wrap: wrap;
        }
        .pagination a, .pagination span {
            min-width: 38px; height: 38px;
            display: inline-flex; align-items: center; justify-content: center;
            background: var(--surface); border: 1px solid var(--border);
            border-radius: 8px; text-decoration: none;
            color: var(--text); font-size: 13px; font-weight: 600;
            transition: all var(--transition);
        }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); }
        .pagination .active {
            background: var(--primary); color: white; border-color: var(--primary);
        }
        .pagination .dots { border: none; background: none; color: var(--text-muted); }

        /* === NO PRODUCTS === */
        .empty-state {
            text-align: center; padding: 60px 20px;
            background: var(--surface); border-radius: var(--radius);
            border: 2px dashed var(--border);
        }
        .empty-state-icon { font-size: 56px; margin-bottom: 16px; }
        .empty-state h3 { font-size: 18px; margin-bottom: 6px; color: var(--primary-dark); }
        .empty-state p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
        .empty-state a { color: var(--primary); font-weight: 600; text-decoration: none; }
        .empty-state a:hover { color: var(--accent); text-decoration: underline; }

        /* === POSTS (HOME SECTION) === */
        .posts-section {
            margin-top: 40px;
        }
        .section-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 20px;
        }
        .section-header h2 {
            font-size: 20px; font-weight: 800; color: var(--primary-dark);
            display: flex; align-items: center; gap: 10px;
        }
        .section-header h2::before {
            content: ''; width: 4px; height: 24px;
            background: var(--accent); border-radius: 2px;
        }
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .post-card {
            background: var(--surface); border-radius: var(--radius);
            overflow: hidden; box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            cursor: pointer; transition: all var(--transition);
            display: flex; flex-direction: column;
        }
        .post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
        .post-img { height: 180px; background: var(--bg); overflow: hidden; flex-shrink: 0; }
        .post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
        .post-card:hover .post-img img { transform: scale(1.05); }
        .post-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
        .post-meta { font-size: 11px; color: var(--text-light); display: flex; gap: 12px; margin-bottom: 8px; }
        .post-title { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; line-height: 1.4; }
        .post-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px;
            display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
            flex: 1;
        }
        .post-read-more {
            font-size: 12px; color: var(--primary); font-weight: 600; text-decoration: none;
            display: inline-flex; align-items: center; gap: 4px;
        }
        .post-read-more:hover { color: var(--accent); }

        /* === FOOTER === */
        .footer {
            background: var(--primary-dark);
            color: #94a3b8; padding: 40px 20px 0;
        }
        .footer-inner {
            max-width: 1400px; margin: 0 auto;
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px; padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-brand h4 { color: white; font-size: 18px; margin-bottom: 10px; }
        .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a {
            width: 36px; height: 36px; border-radius: 8px;
            background: rgba(255,255,255,0.08); color: #94a3b8;
            display: flex; align-items: center; justify-content: center;
            text-decoration: none; font-size: 16px;
            transition: all var(--transition);
        }
        .footer-social a:hover { background: var(--accent); color: white; }
        .footer-col h5 { color: white; font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
        .footer-col a { display: block; color: #94a3b8; text-decoration: none; font-size: 13px; padding: 4px 0; transition: color var(--transition); }
        .footer-col a:hover { color: var(--accent); }
        .footer-col p { font-size: 13px; padding: 4px 0; }
        .footer-bottom {
            max-width: 1400px; margin: 0 auto;
            padding: 16px 0; text-align: center;
            font-size: 12px; color: #64748b;
        }

        /* === FLOATING BUTTONS === */
        .float-wa {
            position: fixed; bottom: 24px; right: 24px; z-index: 90;
            width: 56px; height: 56px; border-radius: 50%;
            background: #25d366; color: white; border: none;
            font-size: 28px; cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            display: flex; align-items: center; justify-content: center;
            transition: transform var(--transition), box-shadow var(--transition);
            text-decoration: none;
        }
        .float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

        .float-top {
            position: fixed; bottom: 90px; right: 24px; z-index: 90;
            width: 42px; height: 42px; border-radius: 50%;
            background: var(--primary); color: white; border: none;
            font-size: 18px; cursor: pointer; box-shadow: var(--shadow-md);
            display: flex; align-items: center; justify-content: center;
            transition: all var(--transition); opacity: 0; pointer-events: none;
        }
        .float-top.visible { opacity: 1; pointer-events: auto; }
        .float-top:hover { background: var(--accent); }

        /* === MODAL === */
        .modal-overlay {
            position: fixed; inset: 0; z-index: 200;
            background: rgba(13,27,42,0.6);
            backdrop-filter: blur(4px);
            display: none; align-items: center; justify-content: center;
            padding: 20px;
        }
        .modal-overlay.open { display: flex; }
        .modal {
            background: var(--surface); border-radius: 16px;
            max-width: 700px; width: 100%; max-height: 90vh;
            overflow-y: auto; box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            animation: modalIn 0.25s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.95) translateY(10px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        .modal-close {
            position: absolute; top: 12px; right: 12px; z-index: 2;
            width: 32px; height: 32px; border-radius: 50%;
            background: rgba(0,0,0,0.5); color: white; border: none;
            font-size: 18px; cursor: pointer; display: flex;
            align-items: center; justify-content: center;
        }
        .modal-close:hover { background: var(--danger); }
        .modal-gallery {
            position: relative; background: var(--bg);
            border-radius: 16px 16px 0 0; overflow: hidden;
        }
        .modal-gallery img {
            width: 100%; height: 300px; object-fit: cover;
        }
        .modal-gallery .no-img {
            height: 200px; display: flex; align-items: center;
            justify-content: center; font-size: 60px; color: var(--text-light);
        }
        .modal-thumbs {
            display: flex; gap: 6px; padding: 10px; overflow-x: auto;
            background: var(--bg);
        }
        .modal-thumbs img {
            width: 56px; height: 56px; object-fit: cover;
            border-radius: 6px; cursor: pointer; border: 2px solid transparent;
            opacity: 0.6; transition: all var(--transition);
        }
        .modal-thumbs img:hover, .modal-thumbs img.active { opacity: 1; border-color: var(--accent); }
        .modal-body { padding: 24px; }
        .modal-cat { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
        .modal-title { font-size: 22px; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
        .modal-sku { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
        .modal-price { font-size: 24px; font-weight: 800; color: var(--danger); margin-bottom: 4px; }
        .modal-old-price { font-size: 14px; color: var(--text-light); text-decoration: line-through; margin-bottom: 12px; }
        .modal-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
        .modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }

        /* === RESPONSIVE === */
        @media (max-width: 1024px) {
            .main-layout { grid-template-columns: 1fr; }
            .sidebar { flex-direction: row; overflow-x: auto; }
            .sidebar-card { min-width: 240px; flex-shrink: 0; }
            .footer-inner { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .hero-inner { flex-direction: column; text-align: center; }
            .hero-text h2 { font-size: 24px; }
            .hero-text p { margin-left: auto; margin-right: auto; }
            .hero-actions { justify-content: center; }
            .hero-stats { justify-content: center; }
            .header-inner { flex-wrap: wrap; }
            .search-box { order: 3; max-width: 100%; flex-basis: 100%; }
            .header-phone { display: none; }
            .products-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
            .product-img { height: 140px; }
            .product-body { padding: 10px; }
            .product-name { font-size: 13px; }
            .product-price { font-size: 15px; }
            .product-actions { flex-direction: column; }
            .list-view .product-card { grid-template-columns: 100px 1fr; }
            .posts-grid { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; gap: 20px; }
        }
        @media (max-width: 480px) {
            .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .product-img { height: 120px; }
            .product-name { font-size: 12px; -webkit-line-clamp: 1; }
            .product-price { font-size: 13px; }
            .product-old-price { font-size: 10px; }
            .product-cat { font-size: 9px; }
            .product-actions { flex-direction: row; }
            .btn-wa, .btn-details { padding: 6px 8px; font-size: 10px; }
            .quick-view-btn { display: none; }
            .toolbar { flex-direction: column; align-items: stretch; }
            .sort-select { width: 100%; }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .products-grid, .posts-section { animation: fadeUp 0.4s ease; }