* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}

body {
background: #f9fafb;
color: #1f2933;
}

.container {
max-width: 1200px;
margin: auto;
padding: 0 16px;
}

nav {
background: #1a1c24;
color: white;
padding: 16px 0;
position: sticky;
top: 0;
z-index: 50;
}

.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
gap: 12px;
}

.logo img {
width: 66px;
height: 66px;
border-radius: 50%;
object-fit: cover;
}

.logo h1 {
font-size: 18px;
font-weight: bold;
}

.logo span {
color: #facc15;
}

.menu-btn {
display: none;
background: none;
border: none;
color: white;
font-size: 26px;
cursor: pointer;
}

.btn-wpp {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}

.nav-links a {
margin-left: 20px;
text-decoration: none;
color: white;
font-weight: bold;
}

.nav-links a:hover {
color: #facc15;
}

.hero {
height: 500px;
background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&q=80') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}

.hero h2 {
font-size: 48px;
margin-bottom: 16px;
}

.hero span {
color: #facc15;
}

.hero p {
max-width: 600px;
margin: auto;
margin-bottom: 24px;
color: #e5e7eb;
}

.hero a {
background: #facc15;
color: black;
padding: 14px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
}

.hero a:hover {
background: #eab308;
}

.cards {
padding: 64px 24px;
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
gap: 24px;
}

.card {
background: white;
padding: 32px;
border-radius: 12px;
text-align: center;
border-top: 4px solid #facc15;
box-shadow: 1px 2px 13px #ddd;
}

.card i {
font-size: 32px;
margin-bottom: 16px;
color: #4b5563;
}

.catalog {
background: #f3f4f6;
padding: 64px 0;
}

.catalog h2 {
text-align: center;
margin-bottom: 40px;
}

.products {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
gap: 24px;
}

/* ===== PRODUCT CARDS ===== */

.product {
background: white;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 10px 25px rgba(0,0,0,.08);
transition: transform .25s ease, box-shadow .25s ease;
}

.product:hover {
transform: translateY(-6px);
box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.product img {
width: 100%;
height: 190px;
object-fit: cover;
transition: transform .4s ease;
}

.product:hover img {
transform: scale(1.06);
}

.product div {
padding: 18px;
}

.product h4 {
font-size: 17px;
margin-bottom: 6px;
}

.product p {
font-size: 14px;
color: #6b7280;
margin-bottom: 14px;
}

.product a {
display: block;
text-align: center;
background: linear-gradient(135deg, #22c55e, #16a34a);
color: white;
padding: 11px;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
transition: filter .25s ease, transform .25s ease;
}

.product a:hover {
filter: brightness(1.1);
transform: translateY(-2px);
}

footer {
background: #111827;
color: #d1d5db;
padding: 64px 0 24px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
gap: 40px;
}

.footer-brand h3 {
color: white;
margin-bottom: 8px;
}

.footer-slogan {
color: #facc15;
font-weight: bold;
margin-top: 8px;
}

.footer-info h4,
.footer-cta h4 {
color: white;
margin-bottom: 12px;
}

.footer-info p {
margin-bottom: 10px;
}

.footer-info i {
margin-right: 8px;
color: #facc15;
}

.footer-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: #22c55e;
color: white;
padding: 14px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
}

.footer-btn:hover {
background: #16a34a;
}

.footer-copy {
border-top: 1px solid #1f2937;
margin-top: 40px;
padding-top: 20px;
text-align: center;
color: #9ca3af;
font-size: 14px;
}

.wpp-float {
display: none;
}

.map-link {
color: #d1d5db;
text-decoration: none;
}

.map-link:hover {
color: #facc15;
text-decoration: underline;
}

/* ===== MOBILE MENU ===== */

@media (max-width: 768px) {

.menu-btn {
display: block;
}

.nav-links {
position: absolute;
top: 82px;
left: 0;
width: 100%;
background: #1a1c24;
display: none;
flex-direction: column;
text-align: center;
padding: 20px 0;
}

.nav-links a {
margin: 12px 0;
display: block;
}

.nav-links.active {
display: flex;
}


.wpp-float {
text-decoration: none;
position: fixed;
bottom: 24px;
right: 24px;
width: 58px;
height: 58px;
background: #22c55e;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
box-shadow: 0 10px 25px rgba(0,0,0,.25);
z-index: 1000;
transition: transform .2s ease, filter .2s ease;
}

.wpp-float:hover {
transform: scale(1.1);
filter: brightness(1.1);
}
}