@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: white;
  overflow-x: hidden;
}

.hide-on-phone a:hover {
  background: #f0f0f0;
  cursor: pointer;
}

.over_container{
  position: relative;
  overflow-x: hidden;
}

.product_icon_logo {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: red;
}
.category_border {
  border: 3px solid #ddd;
  border-radius: 8px;
}

.carousel-item {
  background-color: #f9f9f9;
  height: 500px;
  position: relative;
  @media screen and (width <= 500px) {
    height: 350px;
  }
}

.active-style {
  background-color: #f1580c;
  color: white;
}

.carousel_item_container{
  height: 100dvh !important;
}

.carousel-item img{
  object-fit: fill !important;
}

.product-{
  flex-shrink: 0; 
  width: 25%; 
  max-width: 25%;
}

/* pagination */
.paginate {
  display: inline-block;
  margin:20px auto 50px;
}

.paginate span {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

.overlaybox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: opacity 0.5s ease;
  border-radius: 20px 20px 0 0;
}

.overlaybox h6 {
  font-size: 0.9rem;
  color: blue;
}

.overlaybox h4 {
  font-size: 1.1rem;
  text-transform: capitalize;
}

.overlaybox a {
  display: block;
  padding: 5px 20px;
  background-color: #f1580c;
  font-size: 0.9rem;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}

.update_form label{
font-size: 0.9rem;
}

.update_form button{
  background-color: #f1580c;
  color: #fff;
}

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

.hero_container {
  background: #f0f0f0;
}

.hero_container img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: right;
}

.product_container {
  width: 100%;
  height: 300px;
  background-image: url("./1.jpg");
  background-size: cover;
  background-position: center;
  background-color: "#f0f0f0";
  border-radius: 10px;
  margin: 5px 0;
  cursor: pointer;
}

.show-on-phone {
  display: none;
}

marquee {
  background: #f1580c;
  padding: 20px;
  color: #fff;
}

.scroll_icon {
  font-size: 2rem;
  font-weight: bold;
}

.scroll_title {
  font-size: 1.5rem;
  font-weight: bold;
}

/* add product */
.image-upload {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.upload-box {
  width: 80px;
  height: 80px;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.upload-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.upload-box input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.plus-icon {
  font-size: 24px;
  color: #666;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
}

.form-control,
.form-select {
  font-size: 0.8rem;
}

textarea {
  resize: none;
}

/* pagination */
.pagination {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 10px;
}
.pagination li {
  padding: 0 8px;
  cursor: pointer;
  font-size: 0.8rem;
}
.pagination li.active {
  background: #1a1a0d;
  color: white;
  font-weight: bold;
}

#pagination-numbers {
  display: flex;
  gap: 5px;
  list-style: none;
}
#pagination-numbers li {
  padding: 3px 12px;
  box-shadow: 1px 1px 1px #bbb;
  cursor: pointer;
  border-radius: 5px;
}
.pagination li.disabled {
  color: #bbb;
  cursor: not-allowed;
}

.select-form {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  padding: 5px;
  box-shadow: 1px 1px 1px #bbb;
  border-radius: 5px;
  outline: none;
}

.order_btn {
  border: none;
  border-radius: 0;
  font-size: 0.9rem;
  cursor: pointer;
}
.active_tab {
  border-bottom: 1px solid #f1580c;
}

/* orders details */
.item_rd {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 3px solid #f1580c;
}

.item_li {
  width: 2px;
  height: 90px;
  margin-left: 6px;
  border: 1px solid #1a1a0d;
}

.order_details_items h5 {
  font-size: 0.9rem;
  font-weight: 600;
}

.order_details_items p {
  font-size: 0.8rem;
  color: #666;
}

.list_1 {
  margin-top: -2px;
}

.list_2 {
  margin-top: 62px;
}

/* order details */
.product_order_id {
  font-size: 1.2rem;
  font-weight: 700;
}

.order_text {
  font-size: 0.8rem;
}

.order_text a {
  text-decoration: none;
  color: #1a1a0d;
}

.order_status,
.product_price {
  font-size: 0.8rem;
  font-weight: 600;
}

.first_order_p {
  font-size: 0.8rem;
  color: #666;
}

.product_details_container {
  width: 95%;
}

.product-title {
  font-size: 0.8rem;
  font-weight: 600;
}

.product-review i {
  font-size: 1rem;
  color: #ff9900;
  margin-right: 5px;
}

.product-review {
  font-size: 1rem;
  font-weight: 700;
}

.product-review span {
  font-weight: 500;
  font-size: 0.8rem;
}

.product-price {
  font-size: .9rem;
  font-weight: 600;
}

.product-cart-btn {
  background-color: #ff9900;
  color: white;
  font-size: 1rem;
  margin-top: -10px;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-bottom: 10px;
}
.product-image-slide {
  width: 100px;
  max-width: 100px;
  min-width: 100px;
  height: 70px;
  object-fit: cover;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 5px;
}
.nav-bar-right i {
  font-size: 1.2rem;
  margin-right: 10px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #000;
}
.nav-bar-right img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}
.pay_on_del {
  background: red;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  font-size: 12px;
}
.product_title {
  font-size: 1.5rem;
  font-weight: 500;
}
.product_title_1 {
  font-size: 1rem;
  font-weight: 400;
}
.item-left {
  text-wrap: nowrap;
}
.price h4 {
  font-size: 2rem;
  font-weight: 600;
}
.product_details_p {
  text-align: justify;
}
.va_btn {
  font-size: 0.8rem;
  padding: 5px;
  text-wrap: nowrap;
}

.add_to_cart{
  background: #f1580c;
  color: #fff;
}

.add_to_cart:hover{
  background-color: #c74a30;
  color: #fff;
}

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 <= 991px) {
  .hide-on-phone {
    display: none;
  }
  .product-{
  width: 50%; 
  max-width: 50%;
}
}

@media screen and (width <= 599px) {
  .show-on-phone {
    display: block;
  }
  .hidden-on-phone {
    display: none;
  }
  .text_hide_on_phone {
    display: none;
  }
  .product-{
  width: 75%; 
  max-width: 75%;
}
}

@media screen and (max-width: 400px) {
  .item_li {
    height: 110px;
  }
}

@media screen and (width <= 425px) {
  .on_phone{
    width: 100% !important;
  }
}
