.page-banner { margin-top: 80px; padding: 100px 0 60px; background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-green) 100%); text-align: center; color: var(--color-cream); }
.page-title { font-size: 48px; font-weight: 700; margin-bottom: 15px; }
.page-subtitle { font-size: 18px; opacity: 0.9; }
.breadcrumb { padding: 20px 0; background: var(--color-white); border-bottom: 1px solid #eee; }
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb span { color: var(--color-text-light); margin: 0 10px; }
.products-section { padding: 80px 0; background: var(--color-cream-light); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.product-card { background: var(--color-white); border-radius: var(--border-radius); padding: 40px 30px; box-shadow: var(--shadow-soft); transition: var(--transition-smooth); position: relative; text-align: center; }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); }
.product-card.featured { border: 2px solid var(--color-gold); transform: scale(1.05); }
.product-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.product-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--color-gold); color: var(--color-wine-dark); padding: 5px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.product-header { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #eee; }
.product-name { font-size: 24px; font-weight: 700; color: var(--color-wine); margin-bottom: 15px; }
.product-price { font-size: 36px; font-weight: 700; color: var(--color-green); }
.product-price span { font-size: 16px; color: var(--color-text-light); }
.product-features { list-style: none; text-align: left; margin-bottom: 30px; }
.product-features li { padding: 12px 0; border-bottom: 1px dashed #eee; color: var(--color-text); }
.product-card .btn { width: 100%; }
@media (max-width: 768px) { .page-title { font-size: 32px; } .product-card.featured { transform: none; } .product-card.featured:hover { transform: translateY(-10px); } }
