* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}

body {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../images/background.png");
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.container {
  max-width: 500px;
  width: 100%;
  background-color: #eee;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cover {
  position: relative;
}
.cover .banner {
  width: 100%;
  height: 12rem;
  background-image: url("../images/primagadget_banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-position: 50%;
}
.cover .banner img {
  display: none;
}
.cover .logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.brand {
  margin-top: 55px;
  margin-bottom: 20px;
}
.brand a {
  text-decoration: none;
  color: inherit;
}
.brand .brand-title,
.brand .brand-description {
  font-family: "Actor", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-top: 5px;
}
.brand .brand-title span {
  font-weight: bold;
}

.section {
  border-top: 2px solid #dddddd;
  padding-top: 20px;
}
.section h2,
.menu-list {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.section .link-container {
  margin: 20px 0 20px 0;
  padding-left: 5px;
  padding-right: 5px;
}
.section .link-container .link {
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  background-color: rgb(46, 51, 51);
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 0.5rem 0 rgba(85, 84, 84, 1);
  display: flex;
  align-items: center;
}
.section .link-container .link:hover {
  background-color: #535353;
}
.tokopedia_logo,
.shopee_logo,
.whatsapp_logo {
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin-right: 20px;
}

.tokopedia_logo {
  background-image: url("../images/tokopedia_icon.png");
}
.shopee_logo {
  background-image: url("../images/shopee_icon.png");
}

.whatsapp_logo {
  background-image: url("../images/whatsapp_icon.png");
}

.social-media-container {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-media-container .social-media .social-media-link {
  border-radius: 50%;
  background-color: #f5f5f5;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.social-media-container .social-media .social-media-link:hover {
  background-color: #fff;
}
.menu-list {
  margin-bottom: 20px;
  border-radius: 50px;
  padding-left: 7px;
  padding-right: 7px;
}
.menu-list ul {
  display: flex;
  flex-direction: row;
}

.menu-list ul li {
  flex-basis: 100%;
  text-align: center;
  list-style: none;
  background-color: #d5d5d5;
  position: relative;
}

.menu-list ul li:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.menu-list ul li:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.menu-list ul li:not(:last-child)::after {
  content: "";
  height: 19px;
  position: absolute;
  border: 1px solid #bbbbbb;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-list ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  font-size: 1.1rem;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-list ul li button {
  font-family: "Bebas Neue", sans-serif;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 1rem;
}
.menu-list ul li button:hover {
  cursor: pointer;
}

.menu-list ul li button {
  width: 100%;
  display: block;
  padding: 15px;
}

.menu-list ul li:hover,
.link-active {
  background-color: #afafaf !important;
}

.item-content {
  font-family: "Bebas Neue", sans-serif;
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 10px;
  margin-bottom: 20px;
}

.item-card img {
  max-width: 100%;
  height: auto;
  padding: 0 0.25rem;
}

.item-content .item-body {
  padding-left: 5px;
}

.item-content .item-title {
  font-size: 1.2rem;
  color: #616161;
}

.item-content .item-price {
  font-size: 1.1rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

@media (max-width: 375px) {
  .brand-title {
    font-size: 1.7rem;
  }
  .menu-list ul li a {
    font-size: 1rem;
  }
  .brand-description {
    font-size: 0.9rem;
  }
  .section h2 {
    font-size: 1.4rem;
  }
  .item-content .item-body .item-title {
    font-size: 15px;
  }
  .item-content .item-body .item-price {
    font-size: 14px;
  }
}

.field-group {
  display: flex;
  flex-direction: column;
}

.form-container {
  padding: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.field-group {
  margin-bottom: 10px;
}
.field-group label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
}
.field-group input {
  height: 35px;
  padding: 5px;
  font-size: 16px;
}

.calc-btn {
  width: 100%;
  background-color: #535353;
  color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 7px;
}

.calc-btn:hover {
  cursor: pointer;
  background-color: #626262;
}

.row {
  font-family: "Bebas Neue", sans-serif;
  padding: 10px;
  margin-bottom: 20px;
}
.column {
  padding: 15px;
  box-shadow: rgba(44, 6, 6, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  margin-bottom: 15px;
}
.col-title {
  font-size: 1.2rem;
}
.col-desc {
  position: relative;
  color: #757575;
}
.col-desc span {
  display: block;
  position: absolute;
  right: 0;
  top: -100%;
  background-color: #f4b6b65c;
  padding: 3px 7px;
  border-radius: 30px;
  color: #e26363;
}
