/* Variables for colors */
:root {
  --add-cart-color: #fe3f40;
  --buy-now-color: #005be4;
}

/* Header Logo */
.logo-img {
  width: 20%;
  height: auto;
  padding-top: 10px;
}

/* Header Area with Flexbox Layout */
.header-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Product Div Grid Layout */
.product-div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background-color: #fff;
  border-radius: 3px;
  padding: 20px;
}

/* Button Styles */
.btn-groups button {
  font-size: 16px;
  padding: 15px 16px;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.add-cart-btn {
  background-color: var(--add-cart-color);
  margin-right: 8px;
  border-color: white;
}

.buy-now-btn {
  background-color: var(--buy-now-color);
  border-color: white;
}
.second-login{
  display: none;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .product-div {
    grid-template-columns: 1fr;
  }
  .product-div-right {
    text-align: center;
  }
  .logo-img {
    width: 80%;
    height: auto;
    padding-top: 10px;
    position: relative;
    left: -17%;
  }
  .profile-h6{
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    color: #191a20 !important;
  }
  .second-login{
    display:block;
  }
  
}

/* Add styles for dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-menu a {
  color: black!important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-menu a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-menu {
  display: block;
}