@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

.cart_title {
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}
.cart_title_p {
  font-size: 0.8rem;
}
.cart_item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}
.category {
  font-size: 0.7rem;
  color: gray;
}
.product_details h5 {
  font-size: 0.9rem;
}
.product_details p {
  font-size: 0.8rem;
}
.cart_button button {
  font-size: 1rem;
  border: 2px solid gray;
  background-color: transparent;
  border-radius: 10px;
  padding: 0 4px;
}
.cart_button p {
  margin: 10px;
  font-size: 1rem;
  font-weight: bold;
}
.cart_p_container {
  margin-top: -20px;
}

.cart_button button {
  font-weight: bold;
  font-size: 1rem;
}
.bags h1 {
  font-size: 1.5rem;
  font-weight: 600;
}
.bag_count {
  font-weight: 800;
}
.cart_side_details p {
  font-size: 0.8rem;
}
.cart_side_details h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.cart_side_details input {
  font-size: 0.8rem;
  border-radius: 50px;
}
.cart_side_details button {
  font-weight: bold;
  font-size: 0.8rem;
}
.cost {
  font-weight: 500;
}
.total_cost h5 {
  font-size: 1.2rem;
  font-weight: 600;
}
.total_cost p {
  font-weight: 600;
}

.remove_btn {
  font-size: 0.8rem;
  background-color: transparent;
  border: none;
  color: red;
  cursor: pointer;
}

.increase button {
  font-size: 1.1rem;
  border: 1px solid gray;
  background-color: transparent;
  color: #000;
  border-radius: 10px;
  padding: 0 5px;
  cursor: pointer;
}
.increase p {
  margin: 0 10px;
  font-weight: bold;
}

.pick-address-container {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100dvh;
}

.sm_pick_address {
  position: absolute;
  right: 0;
  width: 30%;
  overflow-y: auto;
  overflow-x: hidden !important;
  height: 100dvh;
}

footer {
  background-color: #f0f0f0;
  color: black;
  padding: 30px;
  width: 100%;
}
footer h4 {
  font-weight: 600;
  margin: 30px 0;
  width: fit-content;
  text-transform: uppercase;
  border-bottom: 1px solid #f1580c;
}

footer p {
  font-size: 0.9rem;
}

footer a {
  color: #1a1a0d;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
}

.pages {
  margin-bottom: 7px;
}
.pages:hover {
  color: #f1580c;
  text-decoration: underline;
}

.footer_contact_icon {
  background: #f1580c;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
}

.subscriber input {
  border: none;
  border-radius: 8px;
  outline: none;
  padding: 10px !important;
  background: rgba(223, 80, 55, 0.1);
  font-size: 0.9rem;
}

.subscriber button {
  background: #f1580c;
  color: white;
  font-size: 0.9rem;
}

.subscriber button:hover {
  background: #c74a30;
  color: #fff;
}


@media screen and (width <= 913px) {
  .sm_pick_address {
    width: 50%;
  }
}

@media screen and (width <= 600px) {
  .sm_pick_address {
    width: 90%;
  }
}
