* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", serif;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: "Poppins", serif;
}

a {
  text-decoration: none;
  color: black;
}

.navbar {
  display: flex;
  justify-content: space-between;
  width: 90%;
  padding: 10px;
  gap: 20px;
  font-size: 14px;
}

.navbar .logo {
  padding: 10px;
}

.navbar .menu {
  list-style: none;
  display: flex;
}

.menu-item {
  position: relative;
}

.navbar .menu .menu-item a {
  text-decoration: none;
  color: black;
  padding: 10px;
  display: block;
}

.navbar .menu .menu-item a:hover {
  background-color: black;
  color: white;
  border-radius: 10px;
}

.navbar .menu .menu-item .dropdown {
  position: absolute;
  z-index: 100;
  width: 200px;
  background-color: white;
  color: black;
  list-style: none;
  display: none;
  box-shadow: 0 8px 16px black;
  border-radius: 15px;
  border: 2px solid white;
}

.navbar .menu .menu-item .dropdown li a {
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}

.navbar .menu .menu-item .dropdown li a:hover {
  background-color: black;
  color: white;
}

.navbar .menu .menu-item:hover .dropdown {
  display: flex;
  flex-direction: column;
}

.navbar .icons {
  display: flex;
  gap: 20px;
  padding: 10px;
}


.header-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dotted black;
  width: 90%;
  font-size: 14px;
  position: sticky;
  top: 0;
  background-color: white;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
  width: 90%;
  height: 550px;
  border-radius: 20px;
  gap: 10px;
  border-radius: 15px;
  margin-top: 50px;
  background-image: url(https://images.samsung.com/is/image/samsung/assets/us/mobile-accessories/08192024/HD01_Flip_Chiefs_DT.jpg?imwidth=1366);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 400px;
  margin-left: 50px;
}

.hero .text .btn {
  display: flex;
  gap: 10px;
}

.hero .text .btn a {
  background-color: black;
  color: white;
  border-radius: 15px;
  padding: 10px;
}

.hero .text .btn a:hover {
  background-color: white;
  color: black;
  border: 2px solid black;
  padding: 8.5px;
}

.mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-top: 80px;
}

.mobile .imgg {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  width: 100%;
  height: 600px;
}

.mobile .imgg .pic {
  display: grid;
  align-items: end;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
}
.mobile .imgg .pic1 {
  background-image: url(https://images.samsung.com/is/image/samsung/assets/40821/CX-Accessories-CO35-Watch7-DT.jpg?$330_330_JPG$);
}

.mobile .imgg .pic2 {
  grid-row: span 2;
  grid-column: span 2;
  background-image: url(https://images.samsung.com/is/image/samsung/assets/40821/CX-Accessories-CO35-Fold6BigTile-DT.jpg?$684_684_JPG$);
}

.mobile .imgg .pic3 {
  background-image: url(https://images.samsung.com/is/image/samsung/assets/us/accessories/09192024/CO35_featured_Charger_330x330.jpg?$330_330_JPG$);
}

.mobile .imgg .pic4 {
  background-image: url(https://images.samsung.com/is/image/samsung/assets/40821/CX-Accessories-CO35-Buds3-DT.jpg?$330_330_JPG$);
}

.mobile .imgg .pic5 {
  background-image: url(https://images.samsung.com/is/image/samsung/assets/us/accessories/09192024/CO35_featured_Adapter_330x330.jpg?$330_330_JPG$);
}

.mobile .imgg .pic .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: small;
  margin-bottom: 20px;
  gap: 10px;
}

.mobile .imgg .pic .text a {
  background-color: black;
  color: white;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  width: 100px;
}

.mobile .imgg .pic .text a:hover {
  background-color: white;
  color: black;
  border: 2px solid black;
  padding: 8.4px;
}

.new {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-top: 80px;
}

.new .product_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  row-gap: 50px;
  padding: 20px;
  width: 100%;
}

.new .product_grid .product_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  gap: 10px;
  font-size: small;
}

.new .product_grid .product_card h3{
  width: 200px;
}

.new .product_grid .product_card img {
  width: 280px;
  margin-bottom: 15px;
  border-radius: 15px;
}

.new .product_grid .product_card a {
  padding: 8px;
  background-color: black;
  border-radius: 15px;
  color: white;
}

.new .product_grid .product_card a:hover {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 6.4px;
}

.amplify {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  gap: 20px;
  margin-top: 80px;
}

.amplify .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.amplify .text a {
  padding: 10px;
  background-color: black;
  border-radius: 15px;
  color: white;
  width: 150px;
  text-align: center;
}

.amplify .text a:hover {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 8.5px;
}

.duet {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  height: 500px;
  background-image: url(https://images.samsung.com/is/image/samsung/assets/us/accessories/05102024/lifestyle-feature-desktop-1440x600.jpg?$1440_N_JPG$);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  margin-top: 80px;
}

.duet .text {
  display: flex;
  flex-direction: column;
  width: 600px;
  padding: 100px;
  gap: 10px;
}

.duet .text a {
  padding: 10px;
  background-color: black;
  border-radius: 15px;
  color: white;
  width: 200px;
  text-align: center;
}

.duet .text a:hover {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 8.5px;
}

.sentence {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  gap: 20px;
  margin-top: 80px;
  border-top: 2px dotted black;
  background-color: #f9f9f9;
}

.sentence .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: smaller;
  width: 90%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer {
  background-color: #f9f9f9;
  padding: 20px 50px;
  width: 90%;
  margin-top: 50px;
  border-top: 2px dotted black;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  margin-right: 20px;
}

.footer-column h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  font-size: 11px;
  text-decoration: none;
  color: #333;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 11px;
  color: #666;
  margin: 5px 0;
}

.footer-bottom p a {
  text-decoration: none;
  color: #333;
}

.footer-bottom p a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 10px;
}

.social-icons span {
  display: block;
  font-size: 11px;
  margin-bottom: 8px;
}
