* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* TOP BAR */
.top-bar {
  background: #0b3d91;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 13px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 1px solid #eee;
  z-index: 999;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #0b3d91;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav a:hover {
  color: #0b3d91;
}

/* SEARCH */
.search-box input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* CURRENCY */
#currency-switcher {
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* HERO SECTION */
.hero {
  display: flex;
  min-height: 60vh;
}

.hero-left,
.hero-right {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left {
  background: #f4f8ff;
}

.hero-right {
  background: #eaf2ff;
}

.hero h1 {
  font-size: 36px;
  color: #0b3d91;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 20px;
  color: #555;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #0b3d91;
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 6px;
  width: fit-content;
}

.btn:hover {
  background: #062a66;
}

/* PRODUCTS SECTION */
.products {
  padding: 60px 30px;
  text-align: center;
}

.products h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #0b3d91;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* PRODUCT CARD */
.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  transition: 0.3s;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 16px;
  margin: 10px 0;
}

.price {
  font-size: 18px;
  color: #0b3d91;
  font-weight: bold;
}

.sale {
  display: inline-block;
  background: red;
  color: #fff;
  padding: 3px 6px;
  font-size: 12px;
  border-radius: 4px;
  margin-top: 5px;
}

/* TRUST SECTION */
.trust {
  background: #f9fbff;
  padding: 50px 20px;
  text-align: center;
}

.trust h2 {
  color: #0b3d91;
  margin-bottom: 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  font-weight: bold;
}

/* FOOTER */
footer {
  background: #0b3d91;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .header {
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-left,
  .hero-right {
    padding: 30px;
  }
}