* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --button-color: #fa832e;
}
:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}

button,
i,
a,
.link {
  cursor: pointer !important ;
}
body {
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
}
i.fontawesome_custom_size {
  font-size: 20px;
}

.headerBer {
  margin: auto;
  text-align: center;
  color: white;
}
.topBer {
  padding: 7px 0px;
}
.headerBer ul {
  font-size: 17px;
}

::placeholder {
  color: #42454e;
}
.search_logo_itemArea.px-16.text-orange-400.grid.grid-cols-3.items-center.place-content-center.bg-black-200 {
  position: fixed;
  z-index: 1;
  background: white;
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;  top: 0;
}
/* .active_class {

  transition: 0.3s;
  box-shadow: 0px 0px 9px #0000001a;
} */



span.product_cou0nt_value {
  position: absolute;
  top: -3px;
  right: -7px;
  color: #ffffff;
  background: #e7670c;
  border-radius: 100%;
  padding: 1px;
  font-size: 11px;
  width: 15px;
  height: 19px;
  display: grid;
  align-items: center;
  text-align: center;
  z-index: 1;
  border: 1px solid white;
}

.count_Shopping {
  position: relative;
}
input {
  appearance: none;
  border: none;
  font: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
}

input[type='search'] {
  appearance: textfield;
  box-sizing: content-box;
  height: 40px;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  appearance: none;
}

input[type='submit'] {
  cursor: pointer;
}

.form__field {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.form__input {
  flex-grow: 1;
}

.search {
  background-color: white;
  border-radius: 0.5rem;
  font-size: 1rem;
  padding: 1rem;
}

.search input[type='search'],
.search input[type='submit'] {
  border-radius: 0.3rem;
}

.search input[type='search'] {
  color: black;
  padding: 2px 3px;
  border: 1px solid #e8623459;
}
.search input[type='search']:focus {
  border: 1px solid #b450092e;
}
.button {
  background-color: #fa832e;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.button:focus,
.button:hover {
  background-color: #b8540c;
}

.search_logo_itemArea .logoIcon img {
  width: 262px;
}

/* .search_logo_itemArea .itemsIcon {
  /* এখানে CSS লিখো */
/* } */
*/ .navbar {
  background-color: #dbdbdb;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  list-style: none;
  display: flex;
}

.menu li {
  margin: 0 10px;
}

.menu li a {
  text-decoration: none;
  color: rgb(32, 32, 32);
  font-size: 16px;
  transition: 0.3s;
  position: relative;
  margin: 7px;
}
.menu li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 10%;
  top: 100%;
  background: black;
  left: 0%;
  transition: width 0.3s ease-in-out;
}
.menu li a:hover::after {
  width: 100%;
}

.Top_benner {
  width: 100%;
  height: 100%;
}
.Top_benner img {
  width: 100%;
  height: 100%;
}

/* slider start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #f3f4f6f6;
  min-height: 100vh;
}

.slider {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    margin-top: 88px;
}

.slides {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide.prev {
  transform: translateX(-100%);
}

button.slider-nav.prev,
button.slider-nav.next{
    display: none;
}

button#prevBtn ,
button#nextBtn {
    display: none;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}

.slide-content {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideRight 0.8s ease-out forwards;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  transform: scale(0.8);
  animation: scaleUp 0.8s ease-out 0.1s forwards;
}

.description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(20px);
  animation: slideLeft 0.8s ease-out 0.2s forwards;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: black;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease-out 0.3s forwards;
}

.cta:hover {
  background: black;
  color: white;
}

.cta .shopping-bag {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}

.cta:hover .shopping-bag {
  transform: scale(1.1);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.3s;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-nav svg {
  width: 1.5rem;
  height: 1.5rem;
}

.prev {
  left: 1rem;
}

.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* slider end */

/* .product */
.product .HeadTitle {
  text-align: center;
  font-size: 40px;
}
 
.product {
  margin-top: 31px;
} 

.product .HeadTitle {
  text-transform: uppercase;
}

.product_items {
  /*margin-top: 30px;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 22px;
  margin-bottom: 20px;
}

/* .product_items .cart {
} */

.product_items .cart .body {
   /*border: 1px solid silver;*/
  /* padding: 10px; */
  margin: auto;
  text-align: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  /*border-bottom-left-radius: 0px;*/
  /*border-bottom-right-radius: 0px;*/
  background: white;
  
}

.cart_view.flex.justify-between {
  padding: 0px 14px 9px 14px;
}
.product_items .cart .body .product_img {
    height: 200px;
    width: 207px;
    overflow: hidden;
   
}

@media (max-width: 480px) {
    
    
    .product_items .cart .body .product_img {
    height: 193px;
    max-width: 100%;
}
}

.product_items .cart .body .product_img img {
    width: 100%;
    height: 100%;
    transition: all 0.7s;
}
.product_items .cart .body .product_img img:hover {transform:scale(1.1);overflow: hidden;}



.product_items .cart .body .desArea {
  margin-top: 9px;
  padding: 0px 7px;
}

.product_items .cart .body .desArea .title {
  font-size: 14px;
  font-family: sans-serif;
}

.product_items .cart .body .desArea .price {
  display: inline;
  margin-right: 5px;
}
.product_items .cart .body .desArea .allPrice {
  text-align: left;
}
.product_items .cart .body .desArea .old_price {
  position: absolute;
  color: gray;
  display: inline;
}

/*.product_items .cart .body .desArea .old_price::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 1%;*/
/*  background: black;*/
/*  right: 0%;*/
/*  top: 50%;*/
/*}*/
.product_items .cart .body button {
  border: none;
  font-size: 17px;
  background: #fa832e;
  color: white;
  padding: 6px 16px;
  border-radius: 17px;
  margin-top: 11px;
  cursor: pointer;
  text-align: center;
  width: auto;
  text-transform: uppercase;
}
.Ramadan_link {
  display: block;
  padding: 9px;
}
button.Ramadan {
  padding: 1% 3% !important;
  font-size: 13px !important;
  width: 37% !important;
}
.headerLink a {
  color: #00e73af3;
  cursor: pointer;
}
.headerLink {
    color: #fa832e;
    padding: 21px 37px;
    margin-top: 37px;
}
/* model style start */

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  position: relative;
  background-color: #f9fafb;
  margin: 1% auto;
  max-width: 1000px;
  width: 90%;
  border-radius: 8px;
  overflow: hidden;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  cursor: pointer;
  z-index: 1;
}

/* Product View Styles */
.product-view {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.product-images {
  flex: 1;
  display: flex;
  gap: 1rem;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail.active {
  border-color: var(--accent-color);
}

.main-image {
  flex: 1;
}

.main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-info {
  flex: 1;
  padding: 1rem;
  position: relative;
}

.discount-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ff4444;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.rating {
  margin: 1rem 0;
}

.stars {
  color: gold;
  margin-right: 0.5rem;
}

.price {
  margin: 1rem 0;
}

.original-price {
  text-decoration: line-through;
  color: var(--secondary-color);
  margin-right: 1rem;
}

.discounted-price {
  color: #ff4444;
  font-size: 1.5rem;
  font-weight: bold;
}

.description {
  color: var(--secondary-color);
  margin: 1rem 0;
}

.options {
  margin: 2rem 0;
}

.option-group {
  margin: 1rem 0;
}

.option-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

.color-options {
  display: flex;
  gap: 0.5rem;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.color-option.pink {
  background-color: #ffb6c1;
}

.color-option.blue {
  background-color: #add8e6;
}

.color-option.purple {
  background-color: #dda0dd;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-selector button {
  width: 30px;
  height: 30px;
  border: 1px solid #e5e7eb;
  background: none;
  cursor: pointer;
}

.quantity-selector input {
  width: 50px;
  text-align: center;
  border: 1px solid #e5e7eb;
  padding: 0.25rem;
}

.add-to-cart {
  width: 100%;
  padding: 1rem;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 2rem;
}

.add-to-cart:hover {
  background-color: #444;
}

/* Product Grid Styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.product-card {
  cursor: pointer;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* model style end */

/* categores  start */

.categories {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}
/* div.ctg_title {
} */

div.ctg_title h6 {
  font-size: 40px;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 1rem;
}

.category-card {
  opacity: 1;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.category-card img {
  width: 100%;
  
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card-inner:hover img {
  transform: scale(1.1);
}

.icon-wrapper {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.5rem;
  border-radius: 0.5rem;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #111827;
}

.card-content h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.card-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.shop-now {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.shop-now:hover {
  background: rgba(255, 255, 255, 0.3);
}

.shop-now svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.shop-now:hover svg {
  transform: translateX(2px);
}

/* categores  end */

/* Footer */
.not-found-product {
  height: 471px;
}
.footer {
  background: #000;
  color: white;
  padding: 4rem 1rem 2rem;
  margin-bottom: 0% !important;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 1;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
  width: 100%;
}

.newsletter-form input {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  color: black;
}

.newsletter-form button {
  width: 100%;
  background: tomato;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
}

.newsletter-form button:hover {
  background: #064e3b;
  transform: translateY(-1px);
}

.newsletter-form button:active {
  transform: translateY(0);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
}
/* quick popup ====================================================== */
button#popup_addToCart {
  position: absolute;
  bottom: 0%;
}
.main-image .f-carousel__thumbs img {
  height: 400px;
  width: 400px;
  object-fit: fill;
}
div#productContainer div#productCarousel {
  display: flex;
  width: 145.5px;
  margin: 5px 0;
  gap: 11px;
}

div#productContainer div#productCarousel .f-carousel__slide {
  width: 82px;
  height: 82px;
}

div#productContainer div#productCarousel .f-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* customar review start------------------------------- */
#reviewModal textarea:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

#starRating span {
  color: #ddd;
  transition: transform 0.2s;
}

#starRating span:hover,
#starRating span.active {
  color: #f1c40f;

  transform: scale(1.15);
}

@keyframes modalPop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* review show style start------------------------------- */
.reviews-section {
  padding: 20px;
  max-width: 700px;
}

.reviews-section h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 1.25rem;
  color: #111;
}

.review-box {
  background: #fff;
  border: 0.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 12px;
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: #1a73e8;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 3px;
  color: #111;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star-filled {
  color: #ef9f27;
  font-size: 14px;
}

.star-empty {
  color: #ddd;
  font-size: 14px;
}

.review-date {
  font-size: 12px;
  color: #aaa;
}

.review-text {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
  line-height: 1.6;
}

.review-images {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.review-images img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  border: 0.5px solid #e5e5e5;
}

.no-reviews {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #aaa;
  font-size: 14px;
}

.no-reviews-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

input#saveInfo {
  appearance: auto;
}
select#payment_method {
  padding: 6px;
  text-transform: capitalize;
}
.wishlist-btn {
  position: absolute;
  top: 48%;
  background: #00000073 !important;
  right: 7px;
  padding: 2px 6px !important;
}

/* slide search style start------------------------------- */
div#search_result {
  position: absolute;
  width: 550px;
  background: white;
  margin: 0 18px;
}

div#search_result div a {
  padding: 10px;
  width: 100%;
  display: block;
  height: 100%;
  top: 0;
  left: 0;
}
div#search_result div a:hover {
  background: #00000024;
}
div#search_result div {
  position: relative;
}
#newsletterMsg {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
}
.footer-column h3 {
  text-transform: capitalize;
  font-size: 21px;
}
.footer-column a:hover {
  text-decoration: underline;
  color: #fa832e;
}
.related-products h2 {
  text-align: center;
  font-size: 24px;
}
.product-view-review_reletedProduct {
  display: flex;
  justify-content: space-between;
}

.related-products {
  margin-right: 20px;
}
button.customer-logout-btn {
  background: #c00000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  padding: 11px;
  margin-top: 13px;
}
button.customer-logout-btn:hover {
  background: #fa832e;
  transition: background 0.15s;
}

/* costmarer phone login page start------------------------------- */
.customer-access {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f0eb;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  background: #fff;
  border-radius: 18px;
  padding: 44px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(192, 80, 0, 0.12);
  text-align: center;
}

.login-logo {
  font-size: 28px;
  font-weight: 800;
  color: #c05000;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.login-logo span {
  color: #fa832e;
}

.login-subtitle {
  font-size: 13px;
  color: #999;
  margin-bottom: 32px;
}

.login-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.login-desc {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}

.input-wrap {
  position: relative;
  margin-bottom: 16px;
}

.input-wrap .prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #c05000;
  font-weight: 600;
  pointer-events: none;
}

.input-wrap input[type='text'] {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border: 1.5px solid #e0d0c8;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #111;
  background: #fff;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  letter-spacing: 0.03em;
}

.input-wrap input[type='text']:focus {
  border-color: #fa832e;
  box-shadow: 0 0 0 3px rgba(250, 131, 46, 0.13);
}

.input-wrap input[type='text']::placeholder {
  color: #bbb;
  font-size: 14px;
}

button[type='submit'] {
  width: 100%;
  padding: 13px;
  background: #c05000;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s;
  margin-top: 4px;
}

button[type='submit']:hover {
  background: #fa832e;
}

button[type='submit']:active {
  transform: scale(0.98);
}

.login-footer {
  margin-top: 24px;
  font-size: 12px;
  color: #bbb;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid #f0e4dc;
}

.divider span {
  font-size: 12px;
  color: #ccc;
}
.product_items .cart .body .old_price {text-decoration: line-through;color: #6c6c6c;}

.price {
    margin: 0 ;
}

@media (max-width: 480px) {
  .login-box {
    padding: 32px 20px;
    border-radius: 14px;
    margin: 16px;
  }
}
