* {
            box-sizing: border-box;
        }
a {
    text-decoration: none !important;
}

 body {
 margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(rgba(5, 12, 26, 0.7), rgba(5, 12, 26, 0.7)), 
                url('/assets/images/1store_back2.webp') no-repeat center center fixed; 
    background-size: cover;
    color: #fff;
}

        .container {
            max-width: 1280px;
            margin: 40px auto 60px;
            padding: 0 20px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .section-header h2 {
            margin: 0;
            font-size: 42px;
            font-weight: 800;
            color: #f8fafc;
        }

        .section-badge {
            color: #cbd5e1;
            font-size: 16px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.06);
            padding: 12px 18px;
            border-radius: 14px;
        }

        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .filter-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 10px 16px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            color: #dbe4f0;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            transition: 0.2s ease;
        }

        .filter-btn:hover {
            background: rgba(255,255,255,0.10);
            color: #fff;
            transform: translateY(-1px);
        }

        .filter-btn.active {
            background: #22c55e;
            color: #04110a;
            border-color: #22c55e;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
            justify-content: center;
            gap: 26px;
        }

        .site-nav a, 
        .filter-btn, 
        .btn-view {
       color: white !important; 
}

a:visited {
    color: white !important;
}

        .product-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;   
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-10px);
    border-color: #22c55e !important;
}

.product-image-wrapper {
    width: 100%;
    height: 360px !important; 
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;    
    overflow: hidden; 
    padding: 6px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

        .product-image {
            width: auto !important;
            height: 100% !important;
            max-width: 100% !important;
            max-height: 100% !important;
            object-fit: contain !important;
            object-position: center !important;
            display: block;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.04);
        }

        .product-content {
            padding: 18px 18px 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-brand {
            color: #22c55e;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            margin-bottom: 10px;
        }

        .product-title {
            font-size: 24px;
            line-height: 1.25;
            margin: 0 0 10px;
            color: #f8fafc;
            font-weight: 800;
        }

        .product-description {
            color: #dbe4f0;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 18px;
            min-height: 68px;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .price {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
        }

        .stock {
            font-size: 13px;
            font-weight: 700;
            padding: 8px 12px;
            border-radius: 999px;
            white-space: nowrap;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .in {
            background: rgba(34,197,94,0.14);
            color: #4ade80;
        }

        .out {
   			 background: rgba(251,191,36,0.15); 
    			color: #facc15;
		}

        .btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #22c55e !important; 
    color: #050c1a !important; 
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s ease;
    border: none !important;
        }

        .btn:hover {
         background: #1ab052 !important; 
         transform: scale(1.02);
         box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
        }

        .empty-box {
            background: linear-gradient(180deg, rgba(30,41,59,0.96), rgba(24,35,57,0.96));
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 36px;
            text-align: center;
            color: #cbd5e1;
            box-shadow: 0 16px 40px rgba(0,0,0,0.28);
        }

        @media (max-width: 900px) {
            .section-header h2 {
                font-size: 34px;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 14px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .section-badge {
                font-size: 14px;
                padding: 10px 14px;
            }

            .filter-bar {
                gap: 8px;
                margin-bottom: 22px;
            }

            .filter-btn {
                min-height: 38px;
                padding: 8px 12px;
                font-size: 13px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .product-card {
                max-width: 360px;
                margin: 0 auto;
            }

            .product-image-wrapper {
                width: 100%;
                height: 260px;
                background: #eef2f7;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 10px;
            }

            .product-image {
                max-width: 95%;
                max-height: 95%;
                object-fit: contain;
            }

            .product-title {
                font-size: 21px;
            }

            .price {
                font-size: 22px;
            }

            .product-description {
                min-height: auto;
            }
        }