@charset "utf-8";
/* CSS Document */
:root {
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --jb-blue: #00a9eb;
    --jb-dark: #0d1b27;
    --price-bg: #ff6b4a;
}
/* Category Header */
.category-header {
    background: var(--jb-dark);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.category-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
}

.category-header p {
    opacity: 0.8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
}

/* The Grid */
.product-grid {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

/* High-End Product Card */
.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--jb-blue);
}

.img-container {
    height: 250px;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-container img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .img-container img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--price-bg);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(255, 107, 74, 0.3);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin: 0 0 10px 0;
    color: var(--jb-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.product-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-view {
    display: block;
    text-align: center;
    padding: 14px;
    background: #f1f5f9;
    color: var(--jb-dark);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.product-card:hover .btn-view {
    background: var(--jb-blue);
    color: white;
}
