/* Desktop & Laptop Memory page */
.page-banner {
    background-color: var(--bg-gray);
    padding: 60px 5%;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-banner h1 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 10px;
}

.page-banner p {
    color: var(--text-light);
    font-size: 16px;
}

.product-grid-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.product-item:hover,
.product-item:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--accent-blue);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.product-image-wrapper img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.product-name {
    padding: 15px 10px 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-status {
    font-size: 12px;
    color: #27ae60;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.product-footer-cta {
    text-align: center;
    padding: 80px 5%;
    background-color: var(--bg-gray);
}

.product-footer-cta h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.cta-note {
    margin-bottom: 25px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
