*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif}
body{background:#f8f9fb;color:#333}
.announcement{background:#0a2a66;color:white;text-align:center;padding:8px;font-size:14px}
.navbar{display:flex;justify-content:space-between;align-items:center;padding:20px 80px;background:white;box-shadow:0 2px 10px rgba(0,0,0,0.05);position:sticky;top:0;z-index:1000}
.logo img{height:75px;width:auto;display:block;transition:transform 0.3s}
.logo img:hover{transform:scale(1.05)}
nav a{margin:0 15px;text-decoration:none;color:#0a2a66;font-weight:500}
.cart-icon{background:#ff7a00;color:white;padding:6px 12px;border-radius:6px;cursor:pointer}
.hero{height:85vh;background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80');background-size:cover;display:flex;justify-content:center;align-items:center;text-align:center;color:white}
.hero h1{font-size:48px}
.hero button{margin-top:20px;padding:12px 30px;background:#ff7a00;border:none;color:white;font-size:16px;border-radius:6px;cursor:pointer}
.categories{padding:80px 60px;text-align:center}
.category-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin-top:30px}
.category{background:#0a2a66;color:white;padding:30px;border-radius:10px;font-weight:600;transition:0.3s}
.category:hover{background:#ff7a00}
.shop{padding:80px 60px;text-align:center}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:25px;margin-top:40px}
.product-card{background:white;padding:20px;border-radius:12px;box-shadow:0 5px 20px rgba(0,0,0,0.05);transition:0.3s}
.product-card:hover{transform:translateY(-5px)}
.product-card img{width:100%;height:220px;object-fit:cover;border-radius:8px}
.price{color:#ff7a00;font-weight:600;margin:10px 0}
.contact{padding:60px;text-align:center}
.footer{background:#0a2a66;color:#fff;padding:50px 60px 30px 60px;font-size:14px;font-weight:400}
.footer-container{display:flex;flex-wrap:wrap;justify-content:space-between;max-width:1200px;margin:0 auto 30px auto;gap:30px}
.footer-column{flex:1 1 200px;min-width:180px}
.footer-logo{height:60px;margin-bottom:20px}
.footer-column h4{font-weight:700;margin-bottom:15px;color:#ff7a00}
.footer-column p{line-height:1.6}
.footer-column ul{list-style:none;padding:0}
.footer-column ul li{margin-bottom:10px}
.footer-column ul li a{color:#fff;text-decoration:none;transition:color 0.3s}
.footer-column ul li a:hover{color:#ff7a00}
.footer-column form{display:flex;margin-top:10px}
.footer-column input[type="email"]{flex-grow:1;padding:8px 12px;border-radius:4px 0 0 4px;border:none;outline:none}
.footer-column button{background-color:#ff7a00;border:none;padding:9px 16px;border-radius:0 4px 4px 0;color:#fff;font-weight:600;cursor:pointer;transition:background-color 0.3s}
.footer-column button:hover{background-color:#e56700}
.social-icons{margin-top:15px}
.social-icons a{font-size:22px;margin-right:15px;color:#fff;transition:color 0.3s;text-decoration:none}
.social-icons a:hover{color:#ff7a00}
.footer-bottom{text-align:center;border-top:1px solid #193c94;padding-top:15px;font-size:13px;color:#b0b9d6}
.cart-drawer{position:fixed;right:-400px;top:0;width:380px;height:100%;background:white;padding:25px;box-shadow:-5px 0 20px rgba(0,0,0,0.1);transition:0.4s;overflow-y:auto}
.cart-drawer.active{right:0}
.checkout-btn{width:100%;padding:12px;margin-top:15px;background:#111;color:white;border:none;cursor:pointer;border-radius:6px}

@media(max-width:768px){
  .navbar{padding:15px 20px}
  .footer-container{flex-direction:column;align-items:center}
  .footer-column{min-width:auto;text-align:center}
  .footer-column ul li{display:inline-block;margin:0 10px 10px 10px}
  .footer-column form{flex-direction:column}
  .footer-column input[type="email"],.footer-column button{width:100%;border-radius:4px;margin:5px 0}
  .social-icons a{margin:0 10px}
  .logo img{height:60px}
}