.product-list{display:grid;grid-gap:1rem;gap:1rem;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));width:100%;box-sizing:border-box}.product{border:1px solid #ddd;padding:.75rem;border-radius:8px;background:#fff;display:flex;flex-direction:column;gap:.5rem;min-width:0}.product .title{font-weight:700}.product .desc,.product .title{word-wrap:break-word;overflow-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.product .desc{font-size:.9rem;color:#666}.product .prices{display:flex;flex-direction:column;gap:.5rem;margin-top:auto}.price-card{border:1px solid #eee;padding:.5rem;border-radius:6px;background:#f6f9fc}.price-card .amount{font-size:1.1rem;font-weight:700}.price-card .amount,.price-card .nickname{word-wrap:break-word;overflow-wrap:break-word}.price-card .nickname{font-size:.85rem;color:#666;margin:.25rem 0}.price-card button{margin-top:.5rem;padding:.5rem 1rem;background-color:#6ecff6;color:white;border:none;border-radius:4px;cursor:pointer;width:100%;transition:background .2s}.price-card button:hover{background-color:#59c6f1}.cart{border:1px solid #ccc;padding:1rem;border-radius:8px;background:#fafafa}.cart-line{display:flex;justify-content:space-between;align-items:center;margin-bottom:.5rem}.cart-line .info{flex:1 1}.cart-line .qty{display:flex;align-items:center;gap:.25rem}.cart-line input{width:60px}.total{font-weight:700;margin-top:.5rem}.empty{color:#666}.cart button{width:100%;padding:.5rem 1rem;font-size:1rem;cursor:pointer;background:#6ecff6;color:#fff;border:none;border-radius:4px;transition:background .2s}.cart button:hover:not(:disabled){background:#59c6f1}.cart button:disabled{background:#aaa;cursor:not-allowed}