| |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
|
|
| body { |
| font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; |
| } |
|
|
| |
| ::-webkit-scrollbar { |
| width: 8px; |
| height: 8px; |
| } |
|
|
| ::-webkit-scrollbar-track { |
| background: #f1f1f1; |
| } |
|
|
| ::-webkit-scrollbar-thumb { |
| background: #FF9900; |
| border-radius: 4px; |
| } |
|
|
| ::-webkit-scrollbar-thumb:hover { |
| background: #e68a00; |
| } |
|
|
| |
| .product-card { |
| transition: all 0.3s ease; |
| } |
|
|
| .product-card:hover { |
| transform: translateY(-5px); |
| } |
|
|
| |
| input:focus, button:focus { |
| outline: 2px solid #FF9900; |
| outline-offset: 2px; |
| } |
|
|
| |
| @media (max-width: 640px) { |
| .hero-text { |
| font-size: 2rem; |
| } |
| } |