/* Base Styling */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

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

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #000000;
  transition: color 0.5s ease-in-out;
  text-decoration: none;
}

h1 {
  font-size: 150px;
  line-height: 64px;
  color: #000000;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #000000;
}

h4 {
  font-size: 20px;
  color: #000000;
}

h6 {
  font-size: 12px;
  font-weight: 700;
}

p {
  font-size: 16px;
  color: #000000;
  margin: 15px 0 20px 0;
}

body {
  background-color: #ffffff;
}

body::-webkit-scrollbar {
  width: 0;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

p {
  line-height: 1.5;
}

/* Header Styling */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 64px;
}

.navbar nav a {
  margin: 0 12px;
  font-weight: 500;
  text-decoration: none;
}
.navbar nav a.active,
.navbar nav a:hover {
  color: #e50914;
  border-bottom: 2px solid #e50914;
}

.icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-left: 16px;
}

body {
  padding-top: 100px; /* adjust if header height changes */
}

/* Cart Icon Badge */
.cart-wrapper {
  position: relative;
  display: inline-block;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #e50914;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 18px;
  text-align: center;
}
