
/* First Navbar */
.pannel-1 {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1px 9px;
  font-family: var(--fds-text-heading-m-font-family);
  margin: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1004;
  height: 50px;
}

.top-sellers p {
  margin: 0;
  color: red;
}

.shop-now {
  cursor: pointer;
  text-decoration: underline;
  color: #000000;
}

.shop-now i {
  margin-left: 5px;
}

/* Second Navbar */
.pannel-2 {
  position: fixed;
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 30px;
  background-color: #fff;
  height: 64px;
  z-index: 1003;
  left: 0;
  right: 0;
}

.logo { 
  height: 32px;
}

#hamburger-menu{
  margin-left: 30px;
  margin-right: 30px;
}

.links {
  display: flex;             
  gap: 20px;                    
  list-style: none;            
  padding: 0;                  
  margin: 0;                    
  font-family: Arial, sans-serif;
}

.links li a {
  text-decoration: none;        
  color: #737373;               
  font-size: 16px;
  padding: 8px 12px;            
  transition: color 0.3s ease;  
}

.links li a:hover {
  color: black;              
  font-weight: 600;
}

.icons{
  margin-left: auto;
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 18px;
  color: #111;
  justify-content: flex-end;
} 

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  /* position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  z-index: -1;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: grayscale(100%);  */
  width: 100%;
  aspect-ratio: 16 / 9; 
}

.video-overlay {
  position: absolute;
  bottom: 30px;
  left: 20px;
  color: white;
  z-index: 1;
}

.video-overlay h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 10px;
  justify-content: center;
}

.video-overlay a {
  padding: 10px 20px;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  justify-content: center;
}

.new-in-section {
  padding: 30px 40px;
  background-color: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 500;
}

.section-header a {
  color: black;
  font-weight: 500;
  text-decoration: underline;
  font-size: 14px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
}

.new-in-section {
  padding: 40px 60px;
  background-color: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: black;
  letter-spacing: 1px
}

.section-header a {
  font-size: 14px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  text-decoration: underline;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0;
 
}

.product-row img {
  width: 180px;
  height: auto;
  object-fit: cover;
  /* box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); Full valid shadow */
  /* transition: transform 0.3s ease; */
}  


.footer {
  background-color: #fff;
  color: #000;
  padding: 40px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  min-width: 180px;
}

.footer-column h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #000;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.subscribe p {
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.read-more p{
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
}

.footer-bottom .logo {
  height: 40px;
}

.region {
  font-weight: 600;
}

.region a {
  margin-left: 10px;
  text-decoration: underline;
  color: #000;
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 20px;
}

.footer-note {
  margin-top: 20px;
  font-size: 12px;
  color: #333;
}

