        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 50px;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-left { display: flex; align-items: center; gap: 15px; }
        .logo { width: 40px; height: 40px; object-fit: contain; }
        .brand { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 1px; }

        .nav-links { display: flex; align-items: center; gap: 25px; }
        .nav-links a { 
            color: #ccc; 
            text-decoration: none; 
            font-weight: 600; 
            font-size: 14px; 
            transition: 0.3s; 
            position: relative;
        }
        .nav-links a:hover { color: var(--green); }

        #cartCount {
            background: var(--green);
            color: #000;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 50px;
            position: absolute;
            top: -10px;
            right: -15px;
            font-weight: 800;
        }

        .shop-tabs { display: flex; justify-content: center; gap: 20px; margin: 40px 0 20px 0; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
        .tab-btn { background: none; border: none; color: var(--muted); font-size: 18px; font-weight: 700; cursor: pointer; padding: 10px 20px; transition: 0.3s; text-transform: uppercase; }
        .tab-btn.active { color: var(--green); border-bottom: 3px solid var(--green); }
        .tab-content { display: none; animation: fadeIn 0.4s ease; }
        .tab-content.active { display: block; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}
.review-author {
    font-weight: 700;
    color: #fff;
}

.review-rating {
    color: #ffb800;
    font-weight: bold;
    font-size: 14px;
}

.review-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-footer {
    font-size: 12px;
    color: var(--muted);
    text-align: right;
}
        .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; }
        .card { background: var(--card); border: 1px solid var(--border); border-radius: 15px; padding: 15px; text-align: center; transition: 0.3s; }
        .card:hover { border-color: var(--green); transform: translateY(-5px); }
        .card img { width: 100%; height: 150px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }
        .card h4 { color: #fff; margin: 0 0 5px 0; font-size: 16px; }
        .card p { color: var(--muted); font-size: 12px; margin: 0 0 10px 0; text-transform: uppercase; }
        .card span { color: #fff; font-weight: 800; font-size: 18px; display: block; margin-bottom: 15px; }
        .card button { background: var(--green); color: #000; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 700; cursor: pointer; width: 100%; }

        .shop-header { display: flex; flex-direction: column; align-items: center; margin-top: -80px; position: relative; z-index: 10; }
        .shop-avatar { width: 150px; height: 150px; border-radius: 50%; border: 6px solid var(--bg); background: var(--card); object-fit: cover; }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }