 /* VESPENGELO Brand Product Page Styling - Matches Your Existing Pages */ * { box-sizing: border-box; margin: 0; padding: 0; } .vsp-product-wrapper { font-family: Arial, sans-serif; color: #444444; line-height: 1.7; max-width: 1200px; margin: 0 auto; padding: 20px 0; } .vsp-section-title { color: #b89a46; font-weight: 700; font-size: 24px; margin-bottom: 25px; text-align: center; letter-spacing: 0.5px; } .vsp-subtitle { color: #006180; font-weight: 700; font-size: 20px; margin-bottom: 18px; text-align: center; } .vsp-intro-text { font-size: 16px; text-align: center; margin-bottom: 40px; color: #444; max-width: 1000px; margin-left: auto; margin-right: auto; } /* Grid Layouts */ .vsp-grid-2col { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 40px; } .vsp-grid-3col { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-bottom: 40px; } /* Box Styling with Hover Effects (Matches Your Brand Pages) */ .vsp-box { background: #f8f8f8; padding: 25px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); transition: all 0.3s ease; border-left: 3px solid rgba(0, 97, 128, 0.1); } .vsp-box:hover { box-shadow: 0 8px 20px rgba(0, 97, 128, 0.08); transform: translateY(-5px); border-left-color: #b89a46; } .vsp-box-icon { color: #b89a46; font-size: 24px; margin-bottom: 15px; text-align: center; display: block; } .vsp-box h4 { color: #006180; font-weight: 700; font-size: 17px; margin-bottom: 12px; text-align: center; } .vsp-box p, .vsp-box li { font-size: 14px; color: #555; } .vsp-box ul { list-style: none; padding-left: 0; } .vsp-box li { margin-bottom: 8px; padding-left: 22px; position: relative; } .vsp-box li:before { content: "&bull;"; color: #b89a46; font-size: 18px; position: absolute; left: 0; top: 0; } /* Full Width Box */ .vsp-full-box { background: #f0f0f0; padding: 30px; border-radius: 12px; margin-bottom: 40px; transition: all 0.3s ease; } .vsp-full-box:hover { box-shadow: 0 8px 20px rgba(0, 97, 128, 0.08); transform: translateY(-5px); } /* CTA Buttons (Matches Your Brand Buttons) */ .vsp-cta-wrapper { text-align: center; margin: 40px 0; } .vsp-btn { display: inline-block; background: #006180; color: #ffffff; padding: 12px 25px; border-radius: 8px; text-decoration: none; font-size: 15px; font-weight: 600; margin: 0 10px 10px; transition: all 0.3s ease; } .vsp-btn:hover { background: #b89a46; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); color: #ffffff; text-decoration: none; } /* Responsive Adjustments */ @media (max-width: 768px) { .vsp-grid-2col, .vsp-grid-3col { grid-template-columns: 1fr; } .vsp-btn { display: block; width: 100%; margin: 0 0 15px 0; } } 