.elementor-11 .elementor-element.elementor-element-389db4e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-000045f *//* Main wrapper layout */
.my-account-container .woocommerce {
  display: flex;
  flex-direction: row-reverse; /* Sidebar on the right */
  gap: 40px;
  align-items: flex-start;
  padding: 40px;
  background: #1a1a1a;
  border-radius: 16px;
  color: #fff;
}

/* Sidebar */
.woocommerce-MyAccount-navigation {
  width: 260px;
  background: #141414;
  border-radius: 16px;
  padding: 20px;
  position: sticky;
  top: 40px;
}

/* Avatar on top */
.woocommerce-MyAccount-navigation::before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #48babb;
  background-image: url('https://avataaars.io/?avatarStyle=Transparent&topType=ShortHairFrizzle&accessoriesType=Blank&hairColor=BrownDark&facialHairType=BeardMedium&facialHairColor=BrownDark&clotheType=ShirtCrewNeck&clotheColor=Gray01&eyeType=Default&eyebrowType=Default&mouthType=Default&skinColor=Light');
}





/* Navigation menu items */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation-link {
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

/* Active menu */
.woocommerce-MyAccount-navigation-link.is-active a {
  background-color: #48babb;
  color: #000;
}

/* Hover */
.woocommerce-MyAccount-navigation-link a:hover {
  background-color: #2c2c2c;
}

/* Font Awesome icons before each item */
.woocommerce-MyAccount-navigation-link--dashboard a::before {
  content: "\f015";
}
.woocommerce-MyAccount-navigation-link--orders a::before {
  content: "\f07a";
}
.woocommerce-MyAccount-navigation-link--edit-address a::before {
  content: "\f3c5";
}
.woocommerce-MyAccount-navigation-link--edit-account a::before {
  content: "\f007";
}
.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  content: "\f2f5";
}
.woocommerce-MyAccount-navigation-link--wishlist a::before {
  content: "\f004";
}
.woocommerce-MyAccount-navigation-link--compare a::before {
  content: "\f24e";
}

.woocommerce-MyAccount-navigation-link a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 20px;
  text-align: center;
}

/* Content on the left */
.woocommerce-MyAccount-content {
  flex: 1;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 12px;
  min-width: 0;
}

/* Table and buttons */
.woocommerce-MyAccount-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.woocommerce-MyAccount-content th,
.woocommerce-MyAccount-content td {
  padding: 12px;
  border-bottom: 1px solid #2a2a2a;
}
.woocommerce-MyAccount-content .button {
  background: #48babb;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.woocommerce-MyAccount-content .button:hover {
  background: #37a0a0;
}

/* Smooth fade animation */
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .my-account-container .woocommerce {
    flex-direction: column;
  }

  .woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
  }

  .woocommerce-MyAccount-navigation::before {
    display: none;
  }
}


@media (max-width: 768px) {
  /* Container layout */
  .my-account-container .woocommerce {
    flex-direction: column;
    padding: 20px;
  }

  /* Navigation bar */
  .woocommerce-MyAccount-navigation {
    width: 100%;
    background: #141414;
    border-radius: 12px;
    padding: 10px 0;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 20px;
    position: static;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    scrollbar-width: none; /* Firefox hide scrollbar */
  }
  .woocommerce-MyAccount-navigation::-webkit-scrollbar {
    display: none; /* Chrome/Safari hide scrollbar */
  }

  /* Hide avatar */
  .woocommerce-MyAccount-navigation::before {
    display: none;
  }

  /* Menu list horizontal flex */
  .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0 10px;
    margin: 0;
    width: auto;
  }
  .woocommerce-MyAccount-navigation li {
    flex-shrink: 0;
  }

  /* Menu links styling */
  .woocommerce-MyAccount-navigation-link a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 12px; /* better tap target */
    min-width: 64px;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 8px;
    gap: 6px;
    white-space: nowrap;
    color: #fff;
    background: transparent;
    transition: all 0.2s ease-in-out;
    position: relative;
  }

  /* Icons above text */
  .woocommerce-MyAccount-navigation-link a::before {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 4px;
  }

  /* Hover and active states */
  .woocommerce-MyAccount-navigation-link a:hover,
  .woocommerce-MyAccount-navigation-link.is-active a {
    background-color: #48babb;
    color: #000;
    box-shadow: 0 0 8px rgba(72, 186, 187, 0.4);
  }

  /* Active underline */
  .woocommerce-MyAccount-navigation-link.is-active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 30%;
    width: 40%;
    height: 2px;
    background: #48babb;
    border-radius: 2px;
  }

  /* Click animation */
  .woocommerce-MyAccount-navigation-link a:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }

  /* Tooltip styling */
  .woocommerce-MyAccount-navigation-link a[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    font-size: 0.7rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0.9;
    pointer-events: none;
  }

  /* Content area styling */
  .woocommerce-MyAccount-content {
    padding: 20px;
    border-radius: 12px;
    background: #1a1a1a;
  }
}/* End custom CSS */