.top_header {
  font-size: 1.4rem;
  color: var(--primary-light-color);
  font-weight: 500;
  padding: 2px;

}

.three_top_icons a {
  color: var(--primary-light-color);
}

.three_top_icons a:hover {
  color: var(--primary-2nd-hover);
  transition: .3s all;
}

.three_top_icons:nth-child(3) {
  display: none !important;
}


.logo {
  width: 74px;
  height: auto;
  padding: 1px;
  margin-top: 4px;
}

.logo img {
  width: 100%;
  height: 100%;
}



.Main_navbar {
  /* background-color: blue; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 6px;
}

.navbar_list {
  margin-top: 15px;
}

.navbar_list li {
  display: flex;
  gap: 5px;
  position: relative;
  align-items: center;
}

.navbar_list li a {
  padding: 3px 3px;
  /* background-color: rebeccapurple; */
  font-size: 1.7rem;
  font-family: "Poppins", serif;
  letter-spacing: .5px;
  font-weight: 400;
  text-transform: capitalize;
  transition: .3s all;
}

.navbar_list li:hover a {
  color: var(--primary-2nd-hover);
}



.three_nav_icons i {
  font-size: 17px;
  color: var(--primary-text-color);
  cursor: pointer;
  margin-top: 2px;

}

/* add_card aside bar  start*/
.aside_card_menu {
  width: 350px;
  background-color: var(--primary-bg-color);
  position: fixed;
  height: 100vh;
  top: 0px;
  right: 0px;
  z-index: 100;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  padding: 10px 0px;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

  /* Initially hidden */
  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;

}

.aside_card_menu.show {
  transform: translateX(0);
  /* Show cart */
  opacity: 1;
  visibility: visible;
}

.card_Xmark {
  padding: 10px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: blue; */
  border-bottom: 1px solid #bbb;
  color: var(--primary-text-color);

}

.card_Xmark h2 {
  font-size: 2rem;
  letter-spacing: 0.8px;
}

.common_Xmark {
  font-size: 20px;
  color: var(--primary-text-color);
  cursor: pointer;
}


.main_card_append {
  /* background-color: tomato; */
  padding: 10px;
  /* min-height: 490px; */
  /* max-height: 490px; */
  overflow-x: hidden;
}

.append_pro_Show {
  /* background-color: teal; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.append_pro_Show .product_card_img {
  width: 60px;
  height: 70px;

}

.append_pro_Show .product_card_img img {
  width: 100%;
  height: 100%;
}

.pro_card_title h4 {
  font-size: 1.6rem;
  color: var(--primary-2nd-hover);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.pro_card_title span {
  display: flex;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  gap: 15px;
  color: #fff !important;
}

/* .pro_card_title span p:nth-child(1) {
  color: var(--primary-light-color);
  text-decoration: line-through;
} */

.pro_card_title span p:nth-child(2) {

  color: var(--primary-text-color);
}

.card_Quanitity {
  width: fit-content;
  border: 1px solid #fff;
  padding: 5px 10px;
  font-size: 1.4rem;
  color: var(--primary-text-color);
  gap: 5px;
  border-radius: 10px;
  margin-left: 5px !important;
  align-items: center;
}

.card_Quanitity input {
  width: 30px;
  outline: none;
  border: 0px;
  background-color: transparent;
  text-align: center;
  color: #fff;
  /* margin-left: 5px; */
}

.bottom_aside_card {
  border-top: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 10px 0px;
  color: #fff;
}

/* add_card aside bar  end */




input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* side bar menu start  */

.Menu_List_Items {
  width: 350px;
  height: 100vh;
  /* padding: 10px; */
  background-color: var(--primary-text-color);
  position: fixed;
  top: 0px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  bottom: 0px !important;
}

.Menu_heading {
  background-color: var(--primary-bg-color);
  position: relative;
  padding: 0px;
  color: var(--primary-text-color);
}

.Menu_heading h1 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  padding: 20px;
  font-family: var(--primary-text);
}

.Menu_heading i {
  position: absolute;
  top: 15px;
  right: 25px;
}


.Menu_List_Items ul li {
  background-color: var(--primary-text-color);
  width: 100% !important;
  padding: 20px 25px;
  font-size: 1.8rem;
  /* font-weight: 500; */
  letter-spacing: 1px;
  border-bottom: 1px solid var(--primary-bg-color);
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.Menu_List_Items ul li a {

  color: var(--primary-bg-color) !important;
}

.Menu_List_Items ul li i {

  color: var(--primary-bg-color) !important;
}

.Catagories_Mobile {
  color: var(--primary-bg-color) !important;
}

.All_Catagories {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.All_Catagories_show {
  max-height: 300px;
  /* Adjust based on content */
  opacity: 1;
  transform: translateY(0);
}

.Menu_List_Items_Active {
  display: flex !important;
}

/* side bar menu End  */







/* Hero_slider */


.hero_slider {
  /* background-color: red; */
  /* padding: 10px; */
  /* min-height: 100vh; */
  position: relative;
}

.Hero_Section {
  padding: 15px 10px;
}

.Hero_Image {
  width: 100%;
  height: auto;
}

.Hero_Image img {
  width: 100%;
  height: 100%;
}

.Hero_Sec_Text {
  width: 80%;
  color: var(--primary-text-color);
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: absolute;
  top: 30%;
  padding-left: 20px;
}

.Hero_Sec_Text h3 {
  font-size: 2rem;
  letter-spacing: .7px;
}

.Hero_Sec_Text h2 {
  font-size: 3.8rem;
}

.Hero_Text_Area {
  font-size: 1.7rem;
  width: 75%;

}

.UpCommimg_Section {
  height: 100%;
  gap: 8px;
  display: flex;
  flex-direction: column;

}

.UpCommimg {
  width: 100%;
  background-color: rosybrown;
  /* padding: 10px; */
  position: relative;

}


.UpCommimg h4 {
  width: 100%;
  background-color: rgba(34, 34, 34, 0.308);
  color: var(--primary-text-color);
  padding: 6px;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 1px;
  position: absolute;
  top: 0px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .4s all;
}

.UpCommimg h4:hover {
  color: var(--primary-2nd-hover);
}


.UpCommimg img {
  width: 100%;
  height: 100%;
}


/* <!-- hot Product --> */

.hot_product_text h3 {
  font-size: 3rem;
  margin: 10px 0px;
  color: var(--primary-text-color);
}

.hot_product_section {
  width: 100%;
  padding: 15px 10px;
}

.four_btn_Tranding button {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-text-color);
  letter-spacing: .6px;
  padding: 5px 10px;
  transition: .6s all;
}


.four_btn_Tranding button:hover,
.btn_active {
  /* border-radius: 10px; */
  border: 1px solid;
  color: var(--primary-2nd-hover) !important;
}


.product-Card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  border-radius: 10px;
  /* padding-right: 10px; */
  width: 100%;
  padding: 2px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;

}


.prouct-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
  padding: 0px 8px;
}

.product_image {
  width: 100%;
  height: 290px;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;

}

.Sale_offer {
  color: var(--primary-text-color);
  font-size: 1.6rem;
  background-color: red;
  width: fit-content;
  padding: 3px 12px;
  letter-spacing: .5px;
  position: absolute;
  z-index: 2;
  top: 10px;
}

.Sold-Out {
  width: 100%;
  font-size: 1.6rem;
  background-color: var(--primary-hover-color);
  padding: 7px 12px;
  letter-spacing: .9px;
  color: var(--primary-text-color);
  position: absolute;
  z-index: 2;
  top: 35%;
  width: 99%;
  text-align: center;


}

.product_image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.product_price p {
  text-decoration: line-through;
  font-size: 1.5rem;
  margin-top: -2px;
  color: #ccc;

}

.product_price h4 {
  font-size: 1.7rem !important;
  color: var(--primary-2nd-hover);
  letter-spacing: 1px;
  font-family: var(--primary-text);
  text-transform: uppercase;
}

.bottel-Size {
  font-size: 1.4rem;
  font-family: var(--primary-text);
  color: var(--primary-text-color);
}

.Product_Name {
  color: var(--primary-text-color);
  text-transform: capitalize;
  font-size: 1.7rem;
  letter-spacing: .9px;
}


/* categorise  code star  */

.summer_bg_img {
  width: 100%;
  height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-text-color);
  letter-spacing: 1px;
}


.lookUp h3 {
  font-size: 1.7rem;
  font-family: var(--primary-text);
  text-align: center;
}

.lookUp p {
  font-size: 1.4rem;
  margin-top: 10px;
  text-align: center;

}

.summer_bg_1 {

  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./src/images/Banner_img/summer.webp);

  background-size: cover;
  background-position: center;
}

.summer_bg_2 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./src/images/Banner_img/winter.webp);
  background-size: cover;
  background-position: center;
}

.summer_bg_img:hover .lookUp h3,
.summer_bg_img:hover .lookUp p {
  transform: scale(1.2);
  transition: .8s all ease-in-out;
}


/* Categorise  code end  */

/* New_Arrivals code start */


/* New_Arrivals code end */



/* Footer start */

.main_Footer {
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;

}

.footer_Logo {
  width: 105px;
  height: auto;
}

.footer_Logo img {
  width: 100%;
  height: 100%;
}

.footer_main_heading {
  font-size: 2rem;
  margin-top: 10px;
  color: #fff;
  letter-spacing: 1px;
}

.footer_categories {
  display: flex;
  flex-direction: column;
  /* margin-top: 10px; */


}

.footer_categories a p {
  color: var(--primery03);
  font-size: 1.5rem;
  letter-spacing: .8px;
}

.footer_categories a p:hover {
  color: var(--primary-2nd-hover);
  transition: .3s all;
}

.footer_icon a i {
  color: var(--primery03);
  transform: .4s all;
}

.footer_icon a i:hover {
  color: var(--primary-2nd-hover);
  transform: .4s all;
}

.Connect_inons {
  align-items: center;
}

.Connect_inons:hover i {
  color: var(--primary-2nd-hover);
}

.Connect_inons i {
  font-size: 25px;
  color: var(--primery03);
}

/* ProductDetails page */

.PD_title {
  /* background-color: violet; */
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.PD_title h3 {
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary-text-color);
}

.Price_discount-tag {
  display: flex;
  align-items: center;
  gap: 20px;
  /* background-color: blue; */
  padding: 8px 0px;
}

.Price_discount-tag h6 {
  font-size: 1.7rem;
  margin-top: 3px !important;
  text-decoration: line-through;
  font-style: italic;
  color: var(--primary-light-color);
}

.Price_discount-tag h4 {
  font-size: 1.7rem !important;
  color: var(--primary-2nd-hover);
  font-family: var(--primary-text);
  margin-top: 3px;
}

.PD_discribtion {
  font-size: 1.6rem;
  color: var(--primery03);
  margin-top: -4px;
}

.CheckStock {
  font-size: 1.5rem;
  gap: 10px;
  align-items: center;
  color: var(--primary-text-color);
}

.CheckStock h5 {
  font-family: var(--primary-text);
  font-size: 1.5rem;
  margin-bottom: -3px;
  letter-spacing: 0.7px;

}

.CheckStock p {
  color: green;
  letter-spacing: 0.7px;
}

.Quantity {
  /* background-color: red; */
  width: fit-content;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid;
  border-radius: 50px;

  color: #fff;

}

.Quantity input {
  width: 35px;
  font-size: 1.5rem;
  background-color: transparent;
  border: none;
  text-align: center;
  font-weight: 500;
  outline: none;
  color: #fff;
}


.Add-to-Card_btn {
  padding: 8px 18px;
  color: var(--primary-2nd-hover);
  border-radius: 100px;
  font-style: normal;
  border: 1px solid var(--primary-2nd-hover);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: .3s all;
}

.Add-to-Card_btn:hover {
  color: black;
  border: 1px solid black;
  background-color: #Fff;


}

.Buy-Now-It_btn {
  margin-top: 5px;
  letter-spacing: 0.5px;
  padding: 6px 19px;
  color: black;
  border-radius: 100px;
  font-style: normal;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: capitalize;
  transition: .3s all;
}

.Buy-Now-It_btn:hover {
  color: var(--primary-2nd-hover);
  border: 1px solid var(--primary-2nd-hover);

}

.PD_Bottom_Icons {
  font-size: 15px;
  color: var(--primary-light-color);
  margin-right: 20px;
  transition: .3s all;
}

.PD_Bottom_Icons:hover {
  color: var(--primary-2nd-hover);
}

.Deatils_Product h3 {
  font-size: 1.4rem;
  letter-spacing: .5px;
  font-weight: 500;
  line-height: 26px;
  color: var(--primary-text-color);
}

.Japanese {
  margin-top: 10px;
  font-size: 1.3rem;
  /* letter-spacing: .5px; */
  font-weight: 500;
  color: #bbb;
}

.product_details_image {
  display: flex;
  /* gap: 10px; */
}

.small_image {
  width: 100%;
  height: auto;
  margin-top: 01px;
  cursor: pointer;
  margin-left: 5px;

}

.main_image {
  width: 100%;
  /* height: 500px; */
  padding: 10px 10px 10px 30px;
  /* background-color: red; */

}

.small_image img,
.main_image img {
  width: 100%;
  height: 100%;
}

.product_img_show {
  /* background-color: rebeccapurple; */
  padding: 8px;
  width: 500px;
  height: 500px;
  justify-content: center;
}





/* All product page start */
.All_banners {
  width: 100%;
  min-height: 50vh;
  /* Adjust height if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  background-image: linear-gradient(rgba(0, 0, 0, 0.178), rgba(0, 0, 0, 0.315)),
    url(./src/images/Banner_img/Untitled-design.png);
}

.All_product_Text h2 {
  font-size: 4rem;
  color: var(--primary-text-color);
}

.All_product_Text li,
.All_product_Text li a {
  font-size: 1.9rem;
  text-align: center;
  margin-top: 15px;
  color: #acacac;
}

.product_filter h2 {
  font-size: 2rem;
  color: var(--primary-text-color);
  letter-spacing: .7px;
}

.product_filter input {
  background-color: transparent;
  border: 1px solid #fff;
  font-size: 1.4rem;
  color: #fff;
  padding: 5px;
  outline: none;
  padding-left: 10PX;
  width: 150px;
}


/* All product page End */

/* .Buy-Now-page start` */

.oder_contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.6rem;
  margin-bottom: 15px;

}

.oder_contact h2 {
  font-size: 2rem;
  color: var(--primary-text-color);
  letter-spacing: 1px;
  text-transform: capitalize;
}

.form_inputs {
  font-size: 1.6rem;
  padding: 10px;
  outline: none;
  color: #fff;
  background-color: transparent;
  border-radius: 5px;
  border: 1px solid;
}


.span_2_input {
  margin-top: 10px;
}

.radio_transaction {
  display: flex;
  gap: 10px;
  align-items: center;
}

.radio_transaction label {
  color: #fff !important;
  font-size: 1.5rem;
}

.Delivery_Cod_Area {
  width: 100%;
  background-color: #F5F5F5;
  padding: 10px;
  margin-top: -5px;
  border: #ccc;
  border-radius: 5px;
  /* height: 70px; */
  color: #000;
  gap: 5px;
  font-size: 1.3rem;
}

.Complete-Order {
  width: 100%;
  margin: 20px 0px;
  padding: 7px;
  border: 2px solid var(--primary-2nd-hover);
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
}

.Complete-Order:hover {
  background-color: #fff;
}

.Final_product {

  /* background-color: blue; */
  width: 80%;
  margin: auto;
  color: #fff;
}

.Final_product span {
  font-size: 1.4rem;
  gap: 20px;
  position: relative;
}

.Final_product img {
  width: 60px;
  height: auto;
  border-radius: 10px;
  height: 60px;
}


.Oder_Summary {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-2nd-hover);
  text-transform: capitalize;
}

.Oder_Summary p {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-2nd-hover);
}

.Oder_Summary h2 {
  font-size: 1.8rem;
}

.respon_summary_show {
  display: none;
  cursor: pointer;
}

.Final_product_parrent {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  /* Initially remove padding */
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.Final_product_parrent.show {
  max-height: 500px;
  /* Adjust height based on content */
  opacity: 1;
  padding: 20px;
  /* Add padding smoothly */
}







/* working padding */
.Check_Out_Price {
  width: 100%;
  background-color: #1A1A1A;
  padding: 30px 20px;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  flex-direction: column;
  align-items: center;
  color: #fff;

  border-radius: 5px;
}

.subTotal_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .7px;
  width: 100%;
}

.subTotal_price h4 {
  font-size: 1.5rem;
  font-family: var(--primary-text);
}

.Check_Out_Btn {

  width: 80% !important;
  margin-top: 30px !important;
  /* font-weight: 500; */
  letter-spacing: 0.6px;
  justify-content: center;

}


/* about page code start */


.Our-Mission_about {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--primary-light-color);
  letter-spacing: 0.5px;
  padding: 14px 30px 10px 0px;
}

.Our-Mission_about h3 {
  font-size: 2.2rem;
  color: #fff !important;
}

.counter-item {
  box-shadow: rgb(181 181 181 / 5%) 0px 5px 15px;
  padding: 40px 5px;
  border-radius: 10px;
}

.counter-item .counter {
  font-family: var(--primary-text) !important;
  font-size: 4.5rem;
  letter-spacing: 0.6px;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-2nd-hover);
  font-weight: 600;

}

.counter-item h4 {
  font-size: 1.5rem;
  letter-spacing: 0.6px;
  margin-top: 10px;
  text-transform: uppercase;
  color: var(--primary-text-color);
}

.our_paragraph {
  background-color: var(--primary-text-color);
  border-radius: 10px;
  padding: 35px 25px;
  display: flex;
  gap: 15px;
  align-items: start;
}

.our_paragraph p {
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: var(--primary-light-color);
}

.our_paragraph i {
  font-size: 19px;
  color: var(--primary-light-color);
}

.Our_Team {
  text-align: center;
  color: var(--primary-text-color);
  font-size: 3rem;
  margin: 15px 0px;
}

.BM_Team {
  width: 100%;
  /* background-color: teal; */
  /* padding: 10px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 40px 0px 20px 0px;
  border-radius: 5px;
  box-shadow: rgb(181 181 181 / 5%) 0px 5px 15px;
}

.Our_Team_Image {
  width: 180px;
  height: 180px;
  transition: transform 1s ease-in-out;


}

.BM_Team:hover .Our_Team_Image img {
  transform: scale(1.1);
}

.Our_Team_Image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  background-color: var(--primary-2nd-hover);

}

.Our_Team_details {
  margin-top: 8px;
  font-size: 1.4rem;
  text-align: center;
  color: var(--primery03);

}

.Our_Team_details h3 {
  font-size: 1.6rem;
  color: var(--primary-text-color);
  letter-spacing: 0.9px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.team_social_icons {
  display: flex;
  gap: 2px;
  margin-top: 10px;
  justify-content: center;
}

.team_social_icons i {
  padding: 6px;
  color: var(--primary-text-color);
  font-size: 14px;
  transition: .4s all;
}

.team_social_icons i:hover {
  color: var(--primary-2nd-hover);
}


/* addToCard PAge start*/




.Prodcu_Table {
  border-collapse: collapse;
  width: 100%;
  margin: 40px 0px 20px;
}



.Prodcu_Table td,
.Prodcu_Table th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 12px 15px;
  text-align: center;
}

.Prodcu_Table tr th {
  font-size: 1.7rem;
  font-family: "Poppins", serif;
  letter-spacing: .5px;
  font-weight: 400;
  text-transform: capitalize;
  transition: .3s all;
  color: var(--primary-light-color);
}

.Product_add_or_Less {
  border: 1px solid var(--primary-light-color);
  color: var(--primary-text-color);
  padding: 8px 15px;
  border-radius: 100px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 100%; */
  gap: 20px;
  font-size: 1.2rem;
  /* font-family: "Poppins", serif; */
  /* background-color: red; */
}


.Prodcu_Table tr td {
  font-size: 1.6rem;
  font-family: "Poppins", serif;
  letter-spacing: .5px;
  font-weight: 400;
  text-transform: capitalize;
  transition: .3s all;
  color: var(--primary-light-color);
}

.Product_Item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Product_Item img {
  width: 110px;
  height: auto;
}

.Produc_text h4 {
  font-size: 1.8rem;
  /* font-family: "Poppins", serif; */
  letter-spacing: .5px;
  font-weight: 400;
  text-transform: capitalize;
  transition: .3s all;
  color: #fff !important;
}

.Produc_text {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 8px;
  margin-left: 10px;
}

.Edit_and_delete {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Edit_and_delete a p {
  margin-top: -2px;
  font-size: 1.2rem;
  color: red !important;
  text-decoration: underline;
}




/* add to cart buttons */


.Buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0px;
}


.Buttons button {
  padding: 10px 20px;
  border: 0px;
  border-radius: 5px !important;
  font-size: 1.3rem;
  /* font-family: "Poppins", serif; */
  font-weight: 500;
  text-transform: capitalize;
  transition: .3s all;
  color: var(--primary-text-color);
  margin-top: 10px;
}

.Bnt1 {
  border: 1px solid var(--primary-2nd-hover) !important;
  color: var(--primary-2nd-hover) !important;
  letter-spacing: 1px;
}

.Bnt1:hover {
  background-color: #fff;
  border: 1px solid #fff !important;
  color: black !important;

}

.Bnt2 {
  background-color: var(--primery03);
  display: none;
}

.Total_Bill {
  display: flex;
  align-items: end;
  justify-content: end;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  height: auto;
  margin-top: 10px;
  margin-bottom:25px;
}


.Subtotal {
  border: 1px solid #dddddd;
  padding: 15px 0px;
  display: flex;
  align-items: start;
  flex-direction: column;
  width: 30rem;
  height: auto;
}

.Shipping_and_Price {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.Subtotal h1 {
  padding: 10px 20px 0px;
  font-size: 1.5rem;
  font-family: var(--primary-text);
  font-weight: 400;
  text-transform: capitalize;
  transition: .3s all;
  color: var(--primary-text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.Subtotal h2 {
  font-size: 1.2rem;
  font-family: "Poppins", serif;
  font-weight: 400;
  text-transform: capitalize;
  transition: .3s all;
  padding: 10px 20px;
  color: var(--primery03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.SubTotal_price_2 {
  padding: 10px 0px;
  border-top: 1px solid var(--primary-text-color);
}

.Checkout_bnt {
  padding: 10px 30px;
  border: 0px;
  width: 30rem;
  border-radius: 100px;
  font-size: 1.2rem;
  font-family: var(--primary-text);
  font-weight: 400;
  text-transform: capitalize;
  background-color: var(--primery03);
  transition: .3s all;
  color: var(--primary-text-color);
}

/* addToCard PAge  end*/





.commonSoon {
  height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  letter-spacing: 1px;

}

.Go-To-Home {
  background-color: var(--primary-text-color);
  padding: 5px 25px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .6px;
  margin-top: 30px;
  color: black;
  transition: .4s all;
  border-radius: 20px;
}

.Go-To-Home i {
  margin-top: 3px;
  margin-left: 5px;
}

.Go-To-Home:hover {
  background-color: transparent;
  color: var(--primary-2nd-hover);
  border: 1px solid var(--primary-2nd-hover);
}