/* Visualização individual reutilizável para produtos encontrados na busca. */
.product-dialog { width: min(1100px, calc(100vw - 48px)); max-height: calc(100vh - 48px); padding: 0; overflow: auto; background: #fbf8f3; border: 0; box-shadow: 0 20px 60px rgba(40, 27, 29, .3); }
.product-dialog::backdrop { background: rgba(40, 27, 29, .58); }
.product-detail-close { position: absolute; top: 12px; right: 12px; z-index: 2; display: grid; place-items: center; width: 34px; height: 34px; padding: 0; background: #281b1d; border: 0; border-radius: 50%; color: #fff; font-size: 22px; }
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: min(620px, calc(100vh - 48px)); }
.product-detail-image { display: grid; place-items: center; min-height: 520px; background: #fff; }
.product-detail-image img { width: 100%; height: 100%; max-height: calc(100vh - 48px); object-fit: contain; }
.product-detail-copy { align-self: center; padding: 56px 52px; }
.product-detail-copy .eyebrow { margin-bottom: 12px; }
.product-detail-copy h2 { margin: 0; font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1; }
.product-detail-code { margin: 26px 0 0; color: var(--muted); font-size: 12px; }
.product-detail-code strong { display: block; margin-top: 5px; color: var(--wine); font-size: 20px; }
.product-detail-price { margin: 26px 0 0; color: var(--wine); font-family: inherit; font-size: 30px; font-weight: 700; line-height: 1; }
.product-card-price { display: block; margin-top: 5px; color: var(--wine); font-size: 13px; }
.product-detail-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); }
.product-detail-benefits > div { display: grid; justify-items: center; gap: 7px; color: var(--muted); font-size: 10px; line-height: 1.3; text-align: center; }
.product-detail-benefits svg { width: 19px; height: 19px; fill: none; stroke: var(--wine); stroke-width: 1.5; }
@media (max-width: 619px) { .product-dialog { width: calc(100% - 24px); max-height: 88vh; } .product-detail-layout { grid-template-columns: 1fr; min-height: 0; } .product-detail-image { min-height: 300px; } .product-detail-image img { max-height: 52vh; } .product-detail-copy { padding: 30px 24px 34px; } .product-detail-benefits { margin-top: 34px; } }
