.product-card{background:var(--white);border-radius:var(--radius-lg);border:1px solid var(--border-cream);overflow:hidden;cursor:pointer;transition:all var(--transition-base);display:flex;flex-direction:column;box-shadow:var(--shadow-card)}.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-card-hover)}.product-card__image-wrapper{position:relative;height:220px;overflow:hidden;background:#f5f0ea}.product-card__image{object-fit:cover;transition:transform var(--transition-slow)}.product-card:hover .product-card__image{transform:scale(1.06)}.product-card__badge{position:absolute;top:12px;left:12px;background:var(--primary-dark);color:var(--white);font-size:.7rem;font-weight:700;padding:.3rem .75rem;border-radius:var(--radius-full);text-transform:uppercase;letter-spacing:.5px}.product-card__body{padding:1.25rem;flex:1;display:flex;flex-direction:column}.product-card__name{font-family:var(--font-heading);font-size:1.15rem;font-weight:700;color:var(--primary-dark);margin-bottom:.5rem}.product-card__desc{font-size:.85rem;color:var(--text-muted);line-height:1.6;flex:1;margin-bottom:1rem}.product-card__price{border-top:1px solid var(--border-cream);padding-top:.875rem;display:flex;align-items:baseline;gap:.5rem}.product-card__price-label{font-size:.75rem;color:var(--text-light)}.product-card__price-value{font-size:1.1rem;font-weight:700;color:var(--accent-gold)}.product-modal__overlay{position:fixed;inset:0;z-index:2000;background:rgba(0,0,0,.65);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;padding:1rem;animation:fadeIn .3s ease}.product-modal{background:var(--white);border-radius:var(--radius-xl);max-width:700px;width:100%;max-height:90vh;overflow-y:auto;display:flex;flex-direction:column;position:relative;animation:slideUp .4s ease}.product-modal__close{position:absolute;top:12px;right:12px;z-index:10;width:40px;height:40px;border-radius:50%;background:rgba(0,0,0,.5);color:#fff;display:flex;align-items:center;justify-content:center;border:none;cursor:pointer;transition:all var(--transition-fast)}.product-modal__close:hover{background:rgba(0,0,0,.7)}.product-modal__image-wrapper{position:relative;height:300px;background:#f5f0ea}.product-modal__image{object-fit:cover}.product-modal__body{padding:1.75rem}.product-modal__title{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--primary-dark);margin-bottom:.75rem}.product-modal__description{font-size:.95rem;color:var(--text-muted);line-height:1.7;margin-bottom:1.5rem}.product-modal__prices-title{font-size:1rem;font-weight:700;color:var(--text-dark);margin-bottom:.75rem;font-family:var(--font-body)}.product-modal__table{width:100%;border-collapse:collapse;margin-bottom:1.25rem}.product-modal__table th{background:var(--accent-gold-bg);padding:.75rem 1rem;text-align:left;font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--primary-brown);border-bottom:2px solid var(--border-cream)}.product-modal__table td{padding:.75rem 1rem;border-bottom:1px solid var(--border-cream);font-size:.9rem}.product-modal__price-value{font-weight:700;color:var(--accent-gold)}.product-modal__note{font-size:.9rem;font-weight:600;color:var(--green-cert);margin-bottom:1.25rem}.product-modal__cta{width:100%}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@media (min-width:600px){.product-modal{flex-direction:row}.product-modal__image-wrapper{width:45%;min-height:400px}.product-modal__body{width:55%}}