.brand-logo img {
  height: 100px !important;
  width: 150px !important;
  top:10px;
}

/* Login Page Styles */
.login__section {
  padding: 60px 0;
}

.account__login {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.account__login:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.account__login--header__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.account__login--header__desc {
  color: #666;
  font-size: 14px;
}

.account__login--input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.account__login--input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.account__login--btn {
  width: 100%;
  padding: 14px;
  background: #ff6b35;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.account__login--btn:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.account__login--forgot {
  background: none;
  border: none;
  color: #ff6b35;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.checkout__checkbox--input {
  margin-right: 8px;
}

.checkout__checkbox--label {
  font-size: 14px;
  color: #666;
}

/* OTP Login Styles */
.login_wrap {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.padding_eight_all {
  padding: 40px;
}

.heading_s1 h1 {
  font-size: 26px;
  font-weight: 700;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.btn-heading {
  background: #ff6b35;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-block {
  width: 100%;
}

.btn-heading:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.checkout__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout__checkbox--checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 3px;
  display: inline-block;
}

/* Wishlist Icon */
.fi-rs-heart.active {
  color: red !important;
}

/* Empty Cart Styles */
.cart_empty {
  padding: 80px 0;
  text-align: center;
}

.cart_empty .cart-left {
  background: #fff;
  padding: 60px 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}

.cart_empty h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.cart_empty .text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.cart_empty .navigation_link_color {
  color: #ff6b35;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cart_empty .navigation_link_color:hover {
  color: #e55a28;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .account__login {
    padding: 25px;
  }
  
  .padding_eight_all {
    padding: 25px;
  }
  
  .account__login--header__title,
  .heading_s1 h1 {
    font-size: 22px;
  }
  
  .cart_empty {
    padding: 40px 0;
  }
  
  .cart_empty .cart-left {
    padding: 40px 20px;
  }
  
  .cart_empty h2 {
    font-size: 24px;
  }
  
  .cart_empty .text {
    font-size: 14px;
  }
}

/* My Account Page Styles */
.my__account--section {
  padding: 60px 0;
}

.account__welcome--text {
  margin-bottom: 30px;
  font-size: 18px;
  color: #555;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #ff6b35;
}

.my__account--section__inner {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  gap: 30px; /* Add space between sidebar and content */
}

/* My Account Left Sidebar */
.account__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.account__menu--list {
  border-bottom: 1px solid #eee;
}

.account__menu--list:last-child {
  border-bottom: none;
}

.account__menu--list a,
.account__menu--list button {
  display: block;
  padding: 15px 20px;
  color: #555;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.account__menu--list a:hover,
.account__menu--list button:hover,
.account__menu--list.active a,
.account__menu--list.active button {
  background-color: #f7f7f7;
  color: #ff6b35;
  padding-left: 25px;
}

/* Account Content */
.account__wrapper {
  flex: 1;
}

.account__content--title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

/* Orders Table */
.account__table {
  width: 100%;
  border-collapse: collapse;
}

.account__table--header__child th {
  background: #f9f9f9;
  padding: 15px;
  font-weight: 600;
  color: #333;
  text-align: left;
  font-size: 14px;
}

.account__table--body__child td {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  font-size: 14px;
  vertical-align: middle;
}

.account__table--body__child:last-child td {
  border-bottom: none;
}

.account__table--body__child--items .btn-small {
  background-color: #ff6b35;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.account__table--body__child--items .btn-small:hover {
  background-color: #e55a28;
  transform: translateY(-2px);
}

.woocommerce.cart_empty h2 {
    font-size: 24px;
}

.woocommerce.cart_empty .text {
    font-size: 15px;
}

.mobile__block {
    display: none;
}

@media (max-width: 991px) {
  .my__account--section__inner {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .my__account--section {
    padding: 30px 0;
  }

  .my__account--section__inner {
    padding: 20px;
  }
  
  .account__welcome--text {
      padding: 15px;
      font-size: 16px;
  }

  .account__content--title {
      font-size: 20px;
  }
  
  .mobile__none {
      display: none;
  }

  .mobile__block {
      display: table-row-group;
  }
  
  .account__table--body__child {
      display: block;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 15px;
  }

  .account__table--body__child td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border: none;
  }

  .account__table--body__child td strong {
      font-weight: 600;
      color: #333;
  }
}

/* My Address Page Styles */
.address_btn {
    background-color: #ff6b35;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.address_btn:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
}

.new__address--btn {
    background: #ff6b35;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.new__address--btn:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.card-body address {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

/* My Profile Page Styles */
.checkout__input--label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.checkout__input--field {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f7f7f7;
}

.checkout__input--field:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
    background: #fff;
}

/* My Wishlist Page Styles */
.shopping-summery .cart__table--inner {
    width: 100%;
    border-collapse: collapse;
}

.shopping-summery .cart__table--header__items th {
    background: #f9f9f9;
    padding: 15px;
    font-weight: 600;
    color: #333;
    text-align: left;
    font-size: 14px;
}

.shopping-summery .cart__table--body__items td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.shopping-summery .cart__product {
    gap: 15px;
}

.shopping-summery .cart__thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.shopping-summery .cart__content h6 {
    margin: 0;
}

.shopping-summery .cart__content .product-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shopping-summery .cart__content .product-name:hover {
    color: #ff6b35;
}

.shopping-summery .product-rate-cover {
    font-size: 12px;
    color: #999;
}

.shopping-summery .cart__price {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
}

.shopping-summery .cart__remove--btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.shopping-summery .cart__remove--btn:hover {
    color: #ff0000;
}

/* My Account Page Enhancement Styles */

/* Making the active link in the sidebar more prominent */
.account__menu--list.active a,
.account__menu--list.active button {
  background-color: #ff6b35 !important;
  color: #fff !important;
  font-weight: 600;
  border-left: 4px solid #e55a28;
  padding-left: 21px;
}

.account__menu--list a:hover,
.account__menu--list button:hover {
  background-color: #f7f7f7;
  color: #ff6b35;
  padding-left: 25px;
}


/* Adding hover effect to table rows */
.account__table--body__child:hover,
.shopping-summery .cart__table--body__items:hover {
  background-color: #fcfcfc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Styling for address cards */
.card.mb-3.mb-lg-0 {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.card.mb-3.mb-lg-0:hover {
  border-color: #ff6b35;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.card-header {
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 20px;
}

.card-body {
  padding: 20px;
}

/* Refined form styling in profile */
.form-group.col-md-6,
.form-group.col-md-12 {
  margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .account__left--sidebar {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .account__table--body__child {
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  }
}