* {
    margin: 0;
}

.Banner{
    width: 100%;
     height: 300px;
    object-fit: cover;
    object-position: 40% 45%;
    position: relative;
    border-bottom: 8px dotted aqua;
}

.Logo{
  position: relative;
  left: 70px;
  bottom: 35px;
  filter: drop-shadow(0 0 2px red)
          drop-shadow(0 0 4px black);
  width: 160px;
  height: 200px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
}

.menu{
  font-size: 18px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900;
  text-shadow: 
    -1px -1px 0 black,  
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}

.navbar{
  position: relative;
  bottom: 184px;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color:white;
  padding: 8px 12px;
  display: block;
}

.navbar a:hover {
  color: cyan;
}

.navbar ul li .dropdown {
  display: none;
  position: absolute;
  left: 0;
  background: #222;
  list-style: none;
  min-width: 150px;
  border-radius: 5px;
  z-index: 1000;
  width: fit-content;
}

.navbar ul li:hover > .dropdown {
  display: block;
}

.dropdown li {
  margin: 0;
}

.dropdown a {
  color: #fff;
  text-wrap: nowrap;
}

.navbar .dropdown .sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: rgba(50, 50, 50, 0.9);
    padding: 10px;
    border-radius: 5px;
    list-style: none;
    width: fit-content;
}

 .navbar .dropdown li:hover > .sub-dropdown {
    display: block;
}

.popup{
  position: relative;
}

.icons .popup>span{
    display: none;
    position: absolute;
    top: 0;
    left: 45px;
    z-index: 10;
    background-color: rgba(50, 50, 50, 0.9);
    padding: 5px 8px;
    border-radius: 5px;
    list-style: none;
    width: fit-content;
    color: white;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
}

.icons .popup:hover>span{
  display: block;
}

.popup:hover{
  z-index: 10;
}

.main{
  padding-top: 40px;
  padding-bottom: 70px;
}

.container{
    width: 80%;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    gap: 40px;
}

.column{
    width:30%;
}

.san-pham{
  position: relative;
    border-radius:10px;
    aspect-ratio: 1;
    box-shadow: 0 0 5px gray;
    padding:10px;
    margin: 5px;
    text-align: center;
} 

.column .ten{
    font-size:larger;
    text-align: center;
    font-weight: 600;
    color: black;
} 

.imgSP{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:6px;
    cursor: pointer;
} 

.icons img{
    width: 40px; 
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
} 

.icons img:hover{
  transform: scale(1.07);
  box-shadow: 0 0 8px gray;
}

.icons{
      position:absolute;
      right:5px;
      bottom:20px;
}

.label{
  width: 180px;
  height: 30px;
  position: absolute;
  top: -10px;
  left: -10px;
}

.label img{
  width: 100%;
  height: 100%;
  right: 145px;
  bottom: 215px;
}

.label p{
  width: 180px;
  text-align: center;
  position: absolute;
  top: 1.8px;
  right: 0;
  font-weight: bold;
}

footer{
    border-top:5px double aqua; 
    line-height:50px; 
    background-color:lightcyan; 
    text-align:center; 
    font-variant:small-caps; 
    clear:both;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 8px;
}

.pagination a {
    color: white;
    background-color: rgba(114, 114, 114, 0.8);
    padding: 8px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.pagination a:hover {
    background-color: aqua;
    color: black;
}

.pagination a.next {
    background-color: rgba(145, 144, 144, 0.6);
}
