.product-card { background: #fff; border: 1px solid #eaeaea; border-radius: 8px; transition: transform 0.2s, box-shadow 0.2s; margin-bottom: 2rem; } .product-card:hover { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); transform: translateY(-2px); } .product-title { color: var(--nemu-blue); font-weight: 700; border-bottom: 2px solid #eaeaea; padding-bottom: 10px; margin-bottom: 15px; } .feature-list { list-style: none; padding-left: 0; } .feature-list li { margin-bottom: 8px; color: #555; font-size: 0.95rem; } .feature-list li i { color: var(--nemu-green); margin-right: 8px; } .price-text { font-size: 1.1rem; font-weight: 600; color: #333; } .btn-outline-custom { color: var(--nemu-blue); border-color: var(--nemu-blue); } .btn-outline-custom:hover { background-color: var(--nemu-blue); color: white; } .btn-custom { background-color: var(--nemu-blue); color: white; border: none; } .btn-custom:hover { background-color: #154563; color: white; } .product-image-placeholder { background: linear-gradient(135deg, var(--nemu-light), #e9ecef); border: 1px dashed #ccc; height: 150px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #888; font-weight: bold; flex-direction: column; }