.product-item {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding: 10px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin: 0 0 15px;
    font-size: 20px;
    color: var(--ink);
}

.product-info p {
    margin: 0 0 10px;
    color: var(--ink-soft);
}

.product-info .product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-dark);
    margin: 12px 0 14px;
}

.product-info .btn-primary {
    margin-top: 15px;
    padding: 8px 20px;
}

#products-new, #products-used, #product-hero {
    padding: 80px 0;
    background: var(--mist);
}

#products-compare,
#products-faq {
    padding: 80px 0;
}

#products-faq {
    background: var(--mist);
}

#products-faq .faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 22px 24px;
    margin-bottom: 18px;
}

#products-faq .faq-item h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.3;
    color: var(--ink);
}

#products-faq .faq-item p {
    margin: 0;
    color: var(--ink-soft);
}

#product-description {
    padding: 40px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: var(--ink);
    font-family: inherit;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--ink-soft);
}

/* Product page price styling */
.product-details .price {
    font-size: 48px;
    margin-bottom: 20px;
} 
