* {
  margin: 0;
  padding: 0;
  font-family: "Amazon Ember", Arial, sans-serif;
  border: border-box;
}

/* for all a link */
a {
  text-decoration: none;
  cursor: pointer;
}

body {
  position: relative;
}

.navbar {
  z-index: 100;
  position: fixed;
  top: 0;
  height: 60px;
  width: 100%;
  background-color: #131921;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 800px) {
  .navbar > div:hover:not(:nth-child(4)) {
    border: 1px solid white;
  }

  .navbar {
    padding: 0 10px;
  }

  .navbar > div {
    border: 1px solid transparent;
  }
}

.navbar > div {
  height: 38px;
  padding: 5px;
}

.logo {
  background-image: url("/photo/amazon.png");
  background-size: cover;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 130px;
}

.nav-logo {
  width: 120px;
}

.add-first {
  white-space: nowrap;
  font-size: 12px;
  line-height: 14px;
  height: 14px;
  font-weight: 400;
  color: #cccccc;
}

.add-second {
  white-space: nowrap;
  font-size: 14px;
  line-height: 15px;
  font-weight: 700;
}

.nav-icon {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.nav-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-address i {
  margin-top: 7px;
}

.nav-search {
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  cursor: pointer;
}

.nav-search span {
  color: rgb(91, 91, 91);
  font-size: 0.8rem;
}

.nav-search > div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.nav-search > :nth-child(1):hover {
  background-color: #c1c0c0;
}

.search div {
  min-height: 40px;
}

.nav-search > :nth-child(1) {
  padding: 0 5px;
  width: 60px;
  background-color: #e6e6e6;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.nav-search > :nth-child(2) {
  width: 100%;
  background-color: white;
}

.search-select {
  background: transparent;
  border: none;
}

.search-input {
  min-height: 34px;
  font-size: 1rem;
  font-weight: 500;
  color: black;
  width: 100%;
  padding-left: 20px;
  border: none;
  transition: box-shadow 0.3s ease;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  outline: none;
}

.toogle {
  display: none;
}

.toogle i:active {
  background-color: #007185;
}

.search-input:focus {
  border-top: 2px solid orange;
  border-left: 2px solid orange;
  border-bottom: 2px solid orange;
}

.search-icon:hover {
  background-color: rgb(254, 177, 77);
}

.nav-search span {
  color: black;
  font: bolder;
  font-weight: 700;
}

.search {
  min-height: 42px;
  display: none;
}

.search-icon {
  width: 8%;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(246, 186, 108);
  color: #0f1111;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.flag {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.flag span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.IndiaFlag {
  height: 12px;
  width: 20px;
  background-image: url("/photo/india.png");
  background-size: contain;
}

.nav-sign {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.sign-first {
  white-space: nowrap;
  font-size: 12px;
  line-height: 14px;
  height: 14px;
  font-weight: 400;
}

.signIn {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #ffcc33, #ff9900);
  color: #fff;
  padding: 9px 15px 8px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.signIn:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.signIn:active {
  transform: scale(0.98);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.sign-second {
  max-width: 200px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-cart {
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 30px;
  display: flex;
}

.nav-cart i {
  font-size: 30px;
}

.nav-cart span {
  font: bold;
  font-size: 14px;
  margin-top: 13px;
}

.location {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  color: white;
  background-color: #2d3e53;
}

.location span {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 500;
}

.location-icon {
  margin-left: 10px;
}

#fix {
  position: fixed;
  display: none;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  min-height: 200vh;
  background-color: #000000d3;
  transition: opacity 0.2s ease-in-out;
}

.slide {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -310px;
  z-index: 1000;
  height: 100vh;
  transition: left 0.4s ease;
  overflow-y: auto;
  width: 310px;
}

.insideBox {
  width: 310px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  background-color: rgb(214, 214, 214);
}

.insideBox h3 {
  padding: 15px 20px;
}

.insideBox > :nth-child(3),
:nth-child(4),
:nth-child(5) {
  padding-bottom: 5px;
}

.insideBox span {
  font-weight: 400;
  padding: 15px 20px;
}

.insideBox span:active {
  background-color: #e9e8e8;
}

.first {
  color: white;
  background-color: #202c3b;
  min-height: 120px;
}

.first > :nth-child(2) {
  display: flex;
  align-items: end;
  justify-content: start;
}

.first > div {
  height: 50%;
  width: 100%;
}

.first i {
  color: white;
  display: none;
  position: fixed;
  z-index: 10000;
  top: 40px;
  right: 29px;
  border: 2px solid white;
  opacity: 0;
  transform: opacity 0.2s ease;
  padding: 12px 14px;
}

.second {
  padding: 13px 0;
  margin-top: -5px;
  height: 30px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
}

.third {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.fourth {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.fifth {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.slide.active {
  left: 0;
}

.nav-content {
  position: relative;
  padding: 0 60px;
  margin-top: 60px;
  height: 40px;
  background-color: #232f3e;
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
}

.nav-content > div {
  font-size: 14px;
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  max-height: 100%;
  border: 1px solid transparent;
}

.nav-content span,
i {
  display: inline-block;
  vertical-align: middle;
}

.nav-content > div:hover:not(:nth-child(15)) {
  border: 1px solid white;
}

.content-all i {
  color: white;
  font-size: 17px;
}

.content-all {
  position: absolute;
  left: 0;
  display: flex;
  gap: 5px;
  align-items: center;
  font-weight: 700;
}

.add {
  position: absolute;
  right: 0;
  background-image: url("/photo/add.jpg");
  background-position: center center;
  background-size: cover;
  width: 20vw;
}

/* Main container for the hero section */
.hero-section {
  width: 100%;
  height: 370px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f4;
}

/* Carousel wrapper */
.carousel {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images container */
.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

/* Images styling */
.carousel-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: transparent;
  color: #5a5a5a;
  cursor: pointer;
  border: none;
  z-index: 10;
  font-size: 25px;
}

.carousel-btn:active {
  padding: 40px 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
}

.left-btn {
  left: 10px;
}

.right-btn {
  right: 10px;
}

.shop-sec a {
  font-size: 13px;
  font-weight: 500;
  margin-left: 20px;
  margin-top: 20px;
  color: #007185;
}

.shop-sec a:hover {
  color: rgb(241, 118, 118);
}

.shop-sec p {
  font-size: 20px !important;
  line-height: 27.3px !important;
  color: black;
  font-weight: 700;
}

.shop-sec {
  padding: 20px;
  display: grid;
  gap: 20px;
  margin-top: -200px;
  grid-template-columns: repeat(4, 1fr);
  background-color: #e3e6e6;
}

.shop-sec > div {
  height: 400px;
  width: 90%;
  min-height: 400px;
  max-width: 450px;
  background: #fff;
  position: relative;
  overflow: hidden;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grid {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid > div:hover {
  cursor: pointer;
}

.grid > div {
  height: 100%;
  width: 100%;
  background-size: 100% 80%;
  background-repeat: no-repeat;
}

.box1-img {
  background-image: url("/photo/box1.jpg");
}

.box2-img {
  background-image: url("/photo/box2.png");
}

.box3-img {
  background-image: url("/photo/box3.png");
}

.box4-img {
  background-image: url("/photo/box4.png");
}

.box5-img {
  background-image: url("/photo/box5.png");
}

.box6-img {
  background-image: url("/photo/box6.png");
}

.box7-img {
  background-image: url("/photo/box7.png");
}

.box8-img {
  background-image: url("/photo/box8.png");
}

.box9-img {
  background-image: url("/photo/box9.png");
}

.box10-img {
  background-image: url("/photo/box10.png");
}

.box11-img {
  background-image: url("/photo/box11.png");
}

.box12-img {
  background-image: url("/photo/box12.png");
}

.box13-img {
  background-image: url("/photo/box13.png");
}

.box14-img {
  background-image: url("/photo/box14.png");
}

.box15-img {
  background-image: url("/photo/box15.png");
}

.box16-img {
  background-image: url("/photo/box16.png");
}

.boxsecond {
  margin-left: 30px;
  margin-top: 20px;
  height: 70%;
  width: 80%;
  background-size: 100% 80%;
  background-repeat: no-repeat;
}

.boxsecond:hover {
  cursor: pointer;
}

.box17-img {
  background-image: url("/photo/box17.png");
}

.box18-img {
  background-image: url("/photo/box18.png");
}

.box19-img {
  background-image: url("/photo/box19.png");
}

.box20-img {
  background-image: url("/photo/box20.png");
}

.foot {
  height: 200px;
  width: 100%;
  background-color: white;
  margin-top: 20px;
}

.msg {
  margin-top: 46px;
  height: 70%;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msg h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.actual-msg {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.actual-msg a {
  color: rgb(61, 59, 59);
  font-size: 0.7rem;
  margin-top: 7px;
  font-weight: 700;
}

.actual-msg span {
  color: #007185;
}

.signin {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Amazon Ember", sans-serif;
  cursor: pointer;
  padding: 9px;
  width: 200px;
  background-color: rgb(255, 173, 65);
  border: 0.5px solid orange;
  border-radius: 5px;
  color: black;
  text-align: center;
  font-size: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.signin:hover {
  background-color: #ff9c1d;
}

/* foooter design */
.foot1 a {
  color: white;
}

.foot1 a:active {
  color: red;
}

.foot1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  height: 45px;
  background-color: #37475a;
  font-size: 13px;
}

.foot2 {
  padding: 50px 200px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
  height: 300px;
  background-color: #232f3e;
}

.foot2 > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot2 a {
  color: rgb(221, 221, 221);
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
  line-height: 10px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.foot2 p {
  line-height: 10px;
  font-size: 16px;
  font-weight: 700;
  align-self: flex-start;
}

.foot3 {
  padding: 30px 200px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
  height: 150px;
  background-color: #131a22;
}

.foot3 > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.foot3 p {
  line-height: 10px;
  margin-bottom: 5px;
  margin-top: 10px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 400;
}

.foot3 a {
  line-height: 15px;
  color: #999;
  font-size: 12px;
  font-weight: 500;
  align-self: flex-start;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.foot2 a:hover {
  color: #ff9800;
  text-decoration: underline;
}

.foot3 a:hover {
  color: #ff9800;
  text-decoration: underline;
}

.foot4 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 0.5px solid rgb(79, 93, 108);
  height: 100px;
  background-color: #232f3e;
}

.Alogo {
  margin-right: 50px;
  background-image: url("/photo/amazon.png");
  background-size: cover;
  height: 50px;
  width: 100px;
}

.country {
  height: 35px;
  width: 130px;
  color: white;
  border: 1px solid lightslategray;
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.country p {
  font-size: 0.6rem;
  margin-left: 20px;
}

.country i {
  margin-left: 10px;
  font-size: 0.7rem;
}

.india {
  margin-left: 10px;
  display: flex;
  align-items: center;
  height: 35px;
  width: 110px;
  border: 1px solid lightslategray;
  border-radius: 3px;
}

.india-flag {
  height: 40%;
  width: 20%;
  margin-left: 10px;
  background-image: url("/photo/india.png");
  background-repeat: no-repeat;
  background-size: 100% 80%;
}

.india p {
  margin-left: 15px;
  color: white;
  font-size: 0.6rem;
}

.foot5 {
  display: flex;
  flex-direction: column;
  height: 100px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  background-color: #121a22;
  color: #dddddd;
}
