
/** account pages - legacy shared styles (my-orders, my-address) **/

.account-section .author-info .account-link{
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.account-section .author-info .account-link.active,
.account-section .author-info .account-link:hover{
  border-color: rgba(235, 122, 1, 1);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}

.account-section .My Account-stats{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.account-section .My Account-stats .stat-box{
  flex: 1 1 180px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
}

.account-section .My Account-stats .stat-box h4{
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 5px;
}

.account-section .My Account-stats .stat-box p{
  margin: 0;
}

.account-section .address-card{
  position: relative;
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.account-section .address-card h5{
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 8px;
}

.account-section .address-card p{
  margin-bottom: 15px;
}

.account-section .address-card .btn-box a{
  margin-right: 10px;
}

.wishlist-section .shop-block-one{
  margin-bottom: 30px;
}


/** my-account page - scoped arb-account-* styles **/

.arb-account-page .arb-account-header h2{
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 8px;
}

.arb-account-page .arb-account-header p{
  margin: 0;
  font-size: 16px;
  color: #666;
}

.arb-account-page .arb-account-layout{
  align-items: flex-start;
}

.arb-account-page .arb-account-sidebar{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 110px;
  z-index: 5;
}

.arb-account-page .arb-account-profile{
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.arb-account-page .arb-account-profile__avatar{
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffddb3;
}

.arb-account-page .arb-account-profile__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arb-account-page .arb-account-profile__name{
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 8px;
}

.arb-account-page .arb-account-profile__meta{
  margin-bottom: 12px;
}

.arb-account-page .arb-account-profile__meta a{
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #666;
  text-decoration: none;
}

.arb-account-page .arb-account-profile__meta a:hover{
  color: var(--theme-color);
}

.arb-account-page .arb-account-profile__edit{
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-color);
  text-decoration: none;
  border: 1px solid #ffbf7b;
  border-radius: 20px;
  padding: 5px 14px;
  background: #fff8f0;
}

.arb-account-page .arb-account-profile__edit:hover{
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

.arb-account-page .arb-account-nav{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arb-account-page .arb-account-nav__link{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #eee;
  border-radius: 12px;
  text-decoration: none;
  color: var(--title-color);
  font-weight: 600;
  transition: all 0.25s ease;
}

.arb-account-page .arb-account-nav__link i{
  width: 18px;
  text-align: center;
  color: var(--theme-color);
  font-size: 16px;
}

.arb-account-page .arb-account-nav__link:hover,
.arb-account-page .arb-account-nav__link.is-active{
  border-color: var(--theme-color);
  background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
  box-shadow: 0 6px 18px rgba(235, 122, 1, 0.1);
}

.arb-account-page .arb-account-main{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.arb-account-page .arb-account-panel__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.arb-account-page .arb-account-panel__title{
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 6px;
}

.arb-account-page .arb-account-panel__desc{
  margin: 0;
  font-size: 15px;
  color: #666;
}

.arb-account-page .arb-account-panel__shop-link{
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  text-decoration: none;
  border: 1px solid #ffbf7b;
  border-radius: 10px;
  padding: 8px 14px;
  background: #fff;
}

.arb-account-page .arb-account-panel__shop-link:hover{
  background: var(--theme-color);
  color: #fff;
}

.arb-account-page .arb-account-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.arb-account-page .arb-account-stat{
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px 16px;
  background: #fafafa;
}

.arb-account-page .arb-account-stat__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff3e7;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.arb-account-page .arb-account-stat h4{
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 2px;
}

.arb-account-page .arb-account-stat p{
  margin: 0;
  font-size: 14px;
  color: #666;
}

.arb-account-page .arb-account-quick-links{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.arb-account-page .arb-account-quick-link{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: var(--title-color);
  font-size: 14px;
  font-weight: 600;
  border: 1px dashed #ddd;
  border-radius: 12px;
  padding: 12px 10px;
  background: #fff;
  transition: all 0.25s ease;
}

.arb-account-page .arb-account-quick-link i{
  color: var(--theme-color);
}

.arb-account-page .arb-account-quick-link:hover{
  border-color: var(--theme-color);
  background: #fff8f0;
}

.arb-account-page .arb-account-block-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.arb-account-page .arb-account-block-head h4{
  font-size: 20px;
  line-height: 28px;
  margin: 0;
}

.arb-account-page .arb-account-block-head a{
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  text-decoration: none;
}

.arb-account-page .arb-account-order-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.arb-account-page .arb-account-order{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px 16px;
}

.arb-account-page .arb-account-order__product{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.arb-account-page .arb-account-order__image{
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  flex-shrink: 0;
  margin: 0;
}

.arb-account-page .arb-account-order__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arb-account-page .arb-account-order__info h5{
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
}

.arb-account-page .arb-account-order__info h5 a{
  color: var(--title-color);
  text-decoration: none;
}

.arb-account-page .arb-account-order__info h5 a:hover{
  color: var(--theme-color);
}

.arb-account-page .arb-account-order__info span{
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.arb-account-page .arb-account-order__info strong{
  font-size: 16px;
  color: var(--theme-color);
}

.arb-account-page .arb-account-order__status{
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 12px;
}

.arb-orders-badge { font-size: 12px; font-weight: 700; border-radius: 20px; padding: 4px 12px; }
.arb-account-page .arb-account-order__status.is-delivered,
.arb-orders-badge.arb-orders-badge--delivered {
    color: rgb(10 175 119);
    background: rgb(59 227 170 / 12%);
}

.arb-account-page .arb-account-order__status.is-pending{
  color: #ed9303;
  background: #fff3e7;
}

.arb-account-page .arb-account-order__status.is-cancelled{
  color: #d93025;
  background: rgba(217, 48, 37, 0.1);
}

.arb-account-page .arb-account-order__status.is-processing{
  color: #ed9303;
  background: #fff3e7;
}

.arb-account-page .arb-account-panel__actions{
  margin-top: 24px;
}

@media only screen and (max-width: 991px){
  .arb-account-page .arb-account-sidebar-col{
    margin-bottom: 24px;
  }
  .arb-account-page .arb-account-sidebar{
    position: static;
  }

  .arb-account-page .arb-account-stats,
  .arb-account-page .arb-account-quick-links{
    grid-template-columns: 1fr;
  }

  .arb-account-page .arb-account-panel__head{
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px){
  .arb-account-page .arb-account-order{
    flex-direction: column;
    align-items: flex-start;
  }

  .arb-account-page .arb-account-order__status{
    align-self: flex-start;
  }
}

@media only screen and (max-width: 599px){
  .arb-account-page .arb-account-main{
    padding: 20px 16px;
  }

  .arb-account-page .arb-account-order__product{
    align-items: flex-start;
  }
}


/** my-orders page - scoped arb-orders-* styles **/

.arb-orders-page .arb-orders-main{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.arb-orders-page .arb-orders-head{
  margin-bottom: 22px;
}

.arb-orders-page .arb-orders-title{
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 6px;
}

.arb-orders-page .arb-orders-desc{
  margin: 0;
  font-size: 15px;
  color: #666;
}

.arb-orders-page .arb-orders-filter{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 22px;
}

.arb-orders-page .arb-orders-filter__field label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 6px;
}

.arb-orders-page .arb-orders-filter__input,
.arb-orders-page .arb-orders-filter__select{
  width: 100%;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  background: #fff;
  outline: none;
  color: #444;
}

.arb-orders-page .arb-orders-filter__input:focus,
.arb-orders-page .arb-orders-filter__select:focus{
  border-color: var(--theme-color);
}

.arb-orders-page .arb-orders-filter__actions{
  display: flex;
  gap: 8px;
}

.arb-orders-page .arb-orders-filter__apply,
.arb-orders-page .arb-orders-filter__reset{
  height: 44px;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.arb-orders-page .arb-orders-filter__apply{
  background: var(--theme-color);
  color: #fff;
}

.arb-orders-page .arb-orders-filter__apply:hover{
  background: #d56a00;
}

.arb-orders-page .arb-orders-filter__reset{
  background: #fff;
  color: #666;
  border: 1px solid #ddd;
}

.arb-orders-page .arb-orders-filter__reset:hover{
  border-color: #bbb;
  color: #333;
}

.arb-orders-page .arb-orders-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.arb-orders-page .arb-orders-tab{
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.arb-orders-page .arb-orders-tab__count{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 50%;
  background: #f0f0f0;
  font-size: 12px;
  color: #666;
}

.arb-orders-page .arb-orders-tab.is-active{
  border-color: var(--theme-color);
  background: #fff8f0;
  color: var(--theme-color);
}

.arb-orders-page .arb-orders-tab.is-active .arb-orders-tab__count{
  background: var(--theme-color);
  color: #fff;
}

.arb-orders-page .arb-orders-tab[data-arb-orders-tab="pending"].is-active{
  border-color: #ed9303;
  background: #fff3e7;
  color: #ed9303;
}

.arb-orders-page .arb-orders-tab[data-arb-orders-tab="pending"].is-active .arb-orders-tab__count{
  background: #ed9303;
}

.arb-orders-page .arb-orders-tab[data-arb-orders-tab="delivered"].is-active{
  border-color: rgb(33 133 99);
  background: rgba(33, 133, 99, 0.1);
  color: rgb(33 133 99);
}

.arb-orders-page .arb-orders-tab[data-arb-orders-tab="delivered"].is-active .arb-orders-tab__count{
  background: rgb(33 133 99);
}

.arb-orders-page .arb-orders-tab[data-arb-orders-tab="cancelled"].is-active{
  border-color: #d93025;
  background: rgba(217, 48, 37, 0.08);
  color: #d93025;
}

.arb-orders-page .arb-orders-tab[data-arb-orders-tab="cancelled"].is-active .arb-orders-tab__count{
  background: #d93025;
}

.arb-orders-page .arb-orders-panel{
  display: none;
  flex-direction: column;
  gap: 14px;
}

.arb-orders-page .arb-orders-panel.is-active{
  display: flex;
}

.arb-orders-page .arb-orders-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
}

.arb-orders-page .arb-orders-card.is-hidden{
  display: none;
}

.arb-orders-page .arb-orders-card__product{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.arb-orders-page .arb-orders-card__image{
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  flex-shrink: 0;
  margin: 0;
  text-align: center;
}

.arb-orders-page .arb-orders-card__image img{
  max-width: 100%;
  max-height: 72px;
}

.arb-orders-page .arb-orders-card__info h5{
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
  color: var(--title-color);
}

.arb-orders-page .arb-orders-card__meta{
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.arb-orders-page .arb-orders-card__price{
  font-size: 16px;
  color: var(--theme-color);
}

.arb-orders-page .arb-orders-badge{
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 20px;
  padding: 6px 12px;
}

.arb-orders-page .arb-orders-badge--pending{
  color: #ed9303;
  background: #fff3e7;
}

.arb-orders-page .arb-orders-badge--delivered{
  color: rgb(33 133 99);
  background: rgba(33, 133, 99, 0.12);
}

.arb-orders-page .arb-orders-badge--cancelled{
  color: #d93025;
  background: rgba(217, 48, 37, 0.1);
}

.arb-orders-page .arb-orders-empty{
  margin: 20px 0 0;
  padding: 24px;
  text-align: center;
  border: 1px dashed #ddd;
  border-radius: 12px;
  color: #888;
  font-size: 15px;
}

@media only screen and (max-width: 991px){
  .arb-orders-page .arb-orders-filter{
    grid-template-columns: 1fr 1fr;
  }

  .arb-orders-page .arb-orders-filter__actions{
    grid-column: 1 / -1;
  }
}

@media only screen and (max-width: 767px){
  .arb-orders-page .arb-orders-filter{
    grid-template-columns: 1fr;
  }

  .arb-orders-page .arb-orders-card{
    flex-direction: column;
    align-items: flex-start;
  }

  .arb-orders-page .arb-orders-main{
    padding: 20px 16px;
  }
}


/** my-order-detail page - scoped arb-order-detail-* styles **/

.arb-order-detail-page .arb-order-detail-main{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.arb-order-detail-page .arb-order-detail-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  text-decoration: none;
  margin-bottom: 16px;
}

.arb-order-detail-page .arb-order-detail-back:hover{
  text-decoration: underline;
}

.arb-order-detail-page .arb-order-detail-top__row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.arb-order-detail-page .arb-order-detail-title{
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 4px;
}

.arb-order-detail-page .arb-order-detail-meta{
  margin: 0;
  font-size: 14px;
  color: #777;
}

.arb-order-detail-page .arb-order-detail-timeline{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 22px;
}

.arb-order-detail-page .arb-order-detail-step{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.arb-order-detail-page .arb-order-detail-step:not(:last-child):after{
  content: '';
  position: absolute;
  top: 10px;
  left: 24px;
  right: -12px;
  height: 2px;
  background: #e5e5e5;
  z-index: 0;
}

.arb-order-detail-page .arb-order-detail-step.is-done:not(:last-child):after{
  background: rgb(33 133 99);
}

.arb-order-detail-page .arb-order-detail-step__dot{
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.arb-order-detail-page .arb-order-detail-step.is-done .arb-order-detail-step__dot{
  border-color: rgb(33 133 99);
  background: rgb(33 133 99);
  box-shadow: inset 0 0 0 4px #fff;
}

.arb-order-detail-page .arb-order-detail-step.is-current .arb-order-detail-step__dot{
  border-color: rgb(33 133 99);
  background: rgb(33 133 99);
  box-shadow: none;
}

.arb-order-detail-page .arb-order-detail-step strong{
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--title-color);
  margin-bottom: 2px;
}

.arb-order-detail-page .arb-order-detail-step span{
  display: block;
  font-size: 12px;
  color: #888;
  line-height: 18px;
}

.arb-order-detail-page .arb-order-detail-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.arb-order-detail-page .arb-order-detail-box{
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.arb-order-detail-page .arb-order-detail-box h4{
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
}

.arb-order-detail-page .arb-order-detail-box p{
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 22px;
  color: #555;
}

.arb-order-detail-page .arb-order-detail-box p:last-child{
  margin-bottom: 0;
}

.arb-order-detail-page .arb-order-detail-box__name{
  font-weight: 700;
  color: var(--title-color) !important;
}

.arb-order-detail-page .arb-order-detail-box__phone i{
  color: var(--theme-color);
  margin-right: 6px;
}

.arb-order-detail-page .arb-order-detail-box span{
  color: #888;
  margin-right: 6px;
}

.arb-order-detail-page .arb-order-detail-paid{
  font-style: normal;
  font-weight: 700;
  color: rgb(33 133 99);
}

.arb-order-detail-page .arb-order-detail-items{
  margin-bottom: 22px;
}

.arb-order-detail-page .arb-order-detail-items > h4,
.arb-order-detail-page .arb-order-detail-summary > h4{
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 14px;
}

.arb-order-detail-page .arb-order-detail-item{
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.arb-order-detail-page .arb-order-detail-item__image{
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  margin: 0;
  flex-shrink: 0;
}

.arb-order-detail-page .arb-order-detail-item__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arb-order-detail-page .arb-order-detail-item__info{
  flex: 1;
  min-width: 0;
}

.arb-order-detail-page .arb-order-detail-item__info h5{
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 4px;
}

.arb-order-detail-page .arb-order-detail-item__info h5 a{
  color: var(--title-color);
  text-decoration: none;
}

.arb-order-detail-page .arb-order-detail-item__info h5 a:hover{
  color: var(--theme-color);
}

.arb-order-detail-page .arb-order-detail-item__info span{
  font-size: 13px;
  color: #888;
}

.arb-order-detail-page .arb-order-detail-item__price{
  font-size: 16px;
  color: var(--theme-color);
  flex-shrink: 0;
}

.arb-order-detail-page .arb-order-detail-summary{
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  background: #fafafa;
  margin-bottom: 22px;
}

.arb-order-detail-page .arb-order-detail-summary__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.arb-order-detail-page .arb-order-detail-summary__list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.arb-order-detail-page .arb-order-detail-summary__list li:last-child{
  margin-bottom: 0;
}

.arb-order-detail-page .arb-order-detail-summary__list li.is-total{
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
  font-size: 16px;
  color: var(--title-color);
}

.arb-order-detail-page .arb-order-detail-summary__list li.is-total strong{
  color: var(--theme-color);
  font-size: 20px;
}

.arb-order-detail-page .arb-order-detail-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.arb-order-detail-page .arb-order-detail-actions .theme-btn{
  padding: 11px 24px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.arb-orders-page .arb-orders-card{
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.arb-orders-page a.arb-orders-card:hover{
  border-color: #ffbf7b;
  box-shadow: 0 8px 20px rgba(235, 122, 1, 0.08);
}

.arb-orders-page .arb-orders-card__view{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--theme-color);
  border-radius: 20px;
  padding: 5px 12px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.arb-orders-page a.arb-orders-card:hover .arb-orders-card__view{
  background: #d56a00;
}

@media only screen and (max-width: 991px){
  .arb-order-detail-page .arb-order-detail-timeline{
    grid-template-columns: 1fr 1fr;
  }

  .arb-order-detail-page .arb-order-detail-step:not(:last-child):after{
    display: none;
  }

  .arb-order-detail-page .arb-order-detail-grid{
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px){
  .arb-order-detail-page .arb-order-detail-main{
    padding: 20px 16px;
  }

  .arb-order-detail-page .arb-order-detail-top__row{
    flex-direction: column;
  }

  .arb-order-detail-page .arb-order-detail-timeline{
    grid-template-columns: 1fr;
  }

  .arb-order-detail-page .arb-order-detail-item{
    flex-wrap: wrap;
  }
}


/** my-address page - scoped arb-address-* styles **/

.arb-address-main{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.arb-address-head{
  margin-bottom: 22px;
}

.arb-address-title{
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 6px;
}

.arb-address-desc{
  margin: 0;
  font-size: 15px;
  color: #666;
}

.arb-address-list{
  margin-bottom: 10px;
}

.arb-address-card{
  position: relative;
  display: block;
  height: calc(100% - 20px);
  border: 2px solid #e5e5e5;
  border-radius: 14px;
  padding: 18px 18px 20px;
  margin-bottom: 20px;
  background: #fff;
  transition: all 0.25s ease;
}

.arb-address-card.is-default,
.arb-address-card:hover{
  border-color: #ffbf7b;
  background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
}

.arb-address-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.arb-address-card__type{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--title-color);
}

.arb-address-card__type i{
  color: var(--theme-color);
}

.arb-address-card__badge{
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: rgb(33 133 99);
  background: rgba(33, 133, 99, 0.12);
  border-radius: 20px;
  padding: 3px 10px;
}

.arb-address-card__text{
  font-size: 14px;
  line-height: 22px;
  color: #555;
  margin-bottom: 6px;
}

.arb-address-card__extra{
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}

.arb-address-card__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.arb-address-edit-btn,
.arb-address-remove-btn{
  position: relative;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px; left: 0; bottom: auto;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.25s ease;
}

.arb-address-edit-btn{
  border: 1px solid var(--theme-color);
  background: #fff;
  color: var(--theme-color);
}

.arb-address-edit-btn:hover{
  background: var(--theme-color);
  color: #fff;
}

.arb-address-remove-btn{
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
}

.arb-address-remove-btn:hover{
  border-color: #d93025;
  color: #d93025;
}

.arb-address-main .address-edit-panel{
  margin-top: 8px;
}

.arb-address-main .form-group{
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.arb-address-main .form-group label{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 6px;
}

.arb-address-main .form-group label span{
  color: var(--theme-color);
}

.arb-address-main .form-group input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
  color: #444;
  padding: 10px 14px;
  border-radius: 10px;
  outline: none;
  background: #fff;
  transition: all 0.25s ease;
}

.arb-address-main .form-group input[type='text']:focus{
  border-color: var(--theme-color);
}

@media only screen and (max-width: 991px){
  .arb-address-main-col{
    margin-top: 24px;
  }
}

@media only screen and (max-width: 767px){
  .arb-address-main{
    padding: 20px 16px;
  }
}

/* ===== Wishlist (account panel) ===== */
.arb-wishlist-main{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  min-height: 320px;
}

.arb-wishlist-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.arb-wishlist-title{
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--title-color);
}

.arb-wishlist-desc{
  margin: 0;
  font-size: 14px;
  color: #777;
}

.arb-wishlist-continue{
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  text-decoration: none;
}

.arb-wishlist-continue:hover{
  text-decoration: underline;
  color: var(--theme-color);
}

.arb-wishlist-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.arb-wishlist-card{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.arb-wishlist-card:hover{
  border-color: #ffd9a8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.arb-wishlist-card__image{
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
  display: block;
}

.arb-wishlist-card__image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arb-wishlist-card__body{
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.arb-wishlist-card__info{
  min-width: 0;
}

.arb-wishlist-card__info h5{
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.arb-wishlist-card__info h5 a{
  color: var(--title-color);
  text-decoration: none;
}

.arb-wishlist-card__info h5 a:hover{
  color: var(--theme-color);
}

.arb-wishlist-card__price{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.arb-wishlist-card__price strong{
  font-size: 17px;
  color: var(--theme-color);
}

.arb-wishlist-card__price del{
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

.arb-wishlist-card__off{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #1a7a1a;
  border-radius: 6px;
  padding: 2px 8px;
}

.arb-wishlist-card__qty{
  font-size: 13px;
  color: #888;
  font-weight: 600;
}

.arb-wishlist-card__actions{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex-shrink: 0;
  min-width: 150px;
}

.arb-wishlist-card__actions form{
  margin: 0;
}

.arb-wishlist-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.arb-wishlist-btn--cart{
  background: #ff7a00;
  color: #fff;
}

.arb-wishlist-btn--cart:hover{
  background: #e86d00;
  color: #fff;
}

.arb-wishlist-btn--remove{
  background: #ffe9e9;
  color: #e11d1d;
}

.arb-wishlist-btn--remove:hover{
  background: #e11d1d;
  color: #fff;
}

.arb-wishlist-empty{
  text-align: center;
  padding: 48px 20px;
}

.arb-wishlist-empty i{
  font-size: 42px;
  color: #ffb15c;
  margin-bottom: 12px;
}

.arb-wishlist-empty h4{
  margin: 0 0 8px;
  font-size: 20px;
}

.arb-wishlist-empty p{
  margin: 0 0 18px;
  color: #777;
}

@media only screen and (max-width: 767px){
  .arb-wishlist-main{
    padding: 18px 14px;
  }

  .arb-wishlist-head{
    flex-direction: column;
  }

  .arb-wishlist-card{
    flex-direction: column;
    align-items: stretch;
  }

  .arb-wishlist-card__image{
    width: 100%;
    height: 160px;
    flex-basis: auto;
  }

  .arb-wishlist-card__body{
    flex-direction: column;
    align-items: stretch;
  }

  .arb-wishlist-card__actions{
    width: 100%;
    min-width: 0;
  }
}

/* Order details page */
.arb-order-detail-page .arb-order-detail__toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}
.arb-order-detail-page .arb-order-detail__back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#1a4d38;
  font-weight:700;
  text-decoration:none;
}
.arb-order-detail-page .arb-order-detail__back:hover{ color:#eb7a01; }
.arb-order-detail-page .arb-order-detail__meta{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:18px 20px;
  margin-bottom:16px;
}
.arb-order-detail-page .arb-order-detail__meta h3{
  margin:0 0 6px;
  font-size:22px;
  color:#1a4d38;
}
.arb-order-detail-page .arb-order-detail__meta p{
  margin:0;
  color:#777;
  font-size:14px;
}
.arb-order-detail-page .arb-order-detail__payment{
  text-align:right;
}
.arb-order-detail-page .arb-order-detail__payment span{
  display:block;
  font-size:12px;
  color:#888;
  margin-bottom:4px;
}
.arb-order-detail-page .arb-order-detail__payment strong{
  color:#eb7a01;
  font-size:15px;
}
.arb-order-detail-page .arb-order-detail__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:16px;
}
.arb-order-detail-page .arb-order-detail__card{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:18px;
}
.arb-order-detail-page .arb-order-detail__card h5{
  margin:0 0 10px;
  font-size:16px;
  color:#1a4d38;
}
.arb-order-detail-page .arb-order-detail__card p{
  margin:0;
  color:#555;
  font-size:14px;
  line-height:1.5;
}
.arb-order-detail-page .arb-order-detail__summary{
  list-style:none;
  margin:0;
  padding:0;
}
.arb-order-detail-page .arb-order-detail__summary li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:6px 0;
  font-size:14px;
  color:#666;
}
.arb-order-detail-page .arb-order-detail__summary li.is-saving strong{ color:#10b125; }
.arb-order-detail-page .arb-order-detail__summary li.is-total{
  border-top:1px solid #eee;
  margin-top:6px;
  padding-top:10px;
  color:#1a4d38;
  font-weight:700;
}
.arb-order-detail-page .arb-order-detail__items{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:18px;
  margin-bottom:16px;
}
.arb-order-detail-page .arb-order-detail__items h5{
  margin:0 0 14px;
  font-size:16px;
  color:#1a4d38;
}
.arb-order-detail-page .arb-order-detail__item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid #f1f1f1;
}
.arb-order-detail-page .arb-order-detail__item:last-child{ border-bottom:0; }
.arb-order-detail-page .arb-order-detail__image{
  width:72px;
  height:72px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #eee;
  margin:0;
  flex-shrink:0;
}
.arb-order-detail-page .arb-order-detail__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.arb-order-detail-page .arb-order-detail__info{
  flex:1;
  min-width:0;
}
.arb-order-detail-page .arb-order-detail__info h6{
  margin:0 0 4px;
  font-size:15px;
  color:#222;
}
.arb-order-detail-page .arb-order-detail__info span{
  display:block;
  font-size:13px;
  color:#888;
}
.arb-order-detail-page .arb-order-detail__price{
  font-weight:700;
  color:#eb7a01;
  white-space:nowrap;
}
.arb-order-detail-page .arb-order-detail__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.arb-order-detail-page .arb-order-detail__link{
  color:#1a4d38;
  font-weight:700;
  text-decoration:none;
}
.arb-order-detail-page .arb-order-detail__link:hover{ color:#eb7a01; }
.arb-order-detail-page .arb-order-detail__empty{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:36px 20px;
  text-align:center;
}
.arb-order-detail-page .arb-order-detail__empty h5{
  margin:0 0 8px;
  color:#1a4d38;
}
.arb-order-detail-page .arb-order-detail__empty p{
  color:#777;
  margin:0 0 18px;
}
@media (max-width: 767px){
  .arb-order-detail-page .arb-order-detail__grid{ grid-template-columns:1fr; }
  .arb-order-detail-page .arb-order-detail__payment{ text-align:left; }
  .arb-order-detail-page .arb-order-detail__item{
    flex-wrap:wrap;
  }
}
