48 lines
1.0 KiB
CSS
48 lines
1.0 KiB
CSS
/* Professional Design - Ethio-Gebeya */
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@600;700;800&display=swap');
|
|
|
|
:root {
|
|
--primary: #1F6FEB;
|
|
--secondary: #0F172A;
|
|
--accent: #F97316;
|
|
--bg: #F8FAFC;
|
|
--text: #1E293B;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: var(--bg);
|
|
color: var(--text);
|
|
margin: 0;
|
|
}
|
|
|
|
h1, h2, h3, .brand {
|
|
font-family: 'Manrope', sans-serif;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(135deg, var(--secondary), var(--primary));
|
|
color: white;
|
|
padding: 80px 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.product-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
gap: 2rem;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.product-card {
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: 1.5rem;
|
|
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.product-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
|
|
} |