.elementor-24 .elementor-element.elementor-element-5d650ce{--display:flex;--padding-top:50px;--padding-bottom:50px;--padding-left:50px;--padding-right:50px;}.elementor-24 .elementor-element.elementor-element-30a092c.etheme-account-page-tabs-vertical .woocommerce-MyAccount-navigation ul li:not(:last-child){margin-bottom:12px;}.elementor-24 .elementor-element.elementor-element-30a092c.etheme-account-page-tabs-horizontal .woocommerce-MyAccount-navigation ul li:not(:last-child){margin-inline-end:12px;}@media(max-width:767px){.elementor-24 .elementor-element.elementor-element-5d650ce{--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}}/* Start custom CSS for woocommerce-account-etheme_page, class: .elementor-element-30a092c *//* ===== My Account Navigation Wrapper ===== */
.woocommerce-MyAccount-navigation {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  overflow-x: auto;
}

/* ===== Navigation List ===== */
.woocommerce-MyAccount-navigation ul {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  scrollbar-width: none; /* Firefox */
}

.woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
  display: none; /* Chrome */
}

/* ===== Each Item ===== */
.woocommerce-MyAccount-navigation li {
  list-style: none;
  flex: 0 0 auto;
}

/* ===== Link Design ===== */
.woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 30px;
  background: #f8f8f8;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* ===== Icon Style ===== */
.woocommerce-MyAccount-navigation a i {
  font-size: 16px;
  transition: 0.3s;
}

/* ===== Hover Effect ===== */
.woocommerce-MyAccount-navigation a:hover {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  transform: translateY(-2px);
}

.woocommerce-MyAccount-navigation a:hover i {
  transform: scale(1.2);
}

/* ===== Active Menu ===== */
.woocommerce-MyAccount-navigation li.is-active a {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255,122,24,0.3);
}

/* ===== Logout Special Style ===== */
.woocommerce-MyAccount-navigation-link--customer-logout a {
  background: #fff0f0;
  color: #e63946;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: #e63946;
  color: #fff;
}

/* ===== Desktop Layout (Sidebar Style Optional) ===== */
@media (min-width: 992px) {
  .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
    gap: 8px;
  }

  .woocommerce-MyAccount-navigation {
    overflow: hidden;
  }

  .woocommerce-MyAccount-navigation a {
    border-radius: 10px;
    padding: 12px 15px;
  }
}

/* ===== Mobile Sticky Style (Optional Advanced UX) ===== */
@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    position: sticky;
    top: 70px;
    z-index: 10;
  }
}

.woocommerce-MyAccount-navigation-link--xstore-wishlist{display:none;}
.woocommerce-MyAccount-navigation-link--xstore-compare{display:none;}









/* =========================
   Tastewala Address Page PRO UI
   ========================= */

/* Background container */
.woocommerce-MyAccount-content {
  background: linear-gradient(135deg, #fff7f2, #fff);
  padding: 25px;
  border-radius: 18px;
}

/* Top text redesign */
.woocommerce-MyAccount-content p {
  text-align: center;
  font-size: 15px;
  color: #444;
  margin-bottom: 25px;
  font-weight: 500;
}
.woocommerce-MyAccount-content .title span {
  display: block;
  text-align: center;

  font-size: 24px;
  font-weight: 700;
  color: #222;

  margin-bottom: 10px;
}
/* =========================
   ADDRESS CARD (GLASS UI)
   ========================= */

.woocommerce-Address {
  position: relative;
  max-width: 420px;
  margin: auto;
  padding: 30px 20px;
  border-radius: 18px;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);

  text-align: center;

  box-shadow: 
    0 10px 30px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.4);

  transition: all 0.3s ease;
}

/* Glow hover */
.woocommerce-Address:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 40px rgba(255,122,24,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.6);
}

/* =========================
   TITLE + ICON
   ========================= */

.woocommerce-Address-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.woocommerce-Address-title h2 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

/* Add icon before title */
.woocommerce-Address-title h2::before {
  content: "📍";
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

/* =========================
   BUTTON (BIG CTA)
   ========================= */

.woocommerce-Address-title .edit {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  border-radius: 50px;

  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  letter-spacing: 0.3px;

  box-shadow: 0 8px 20px rgba(255,122,24,0.35);
  transition: all 0.3s ease;
}

/* Button hover */
.woocommerce-Address-title .edit:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255,122,24,0.45);
}

/* =========================
   EMPTY STATE (SMART UX)
   ========================= */

.woocommerce-Address address {
  margin-top: 18px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Replace boring text */
.woocommerce-Address address::before {
  content: "🚫 No address saved yet";
  display: block;
  font-weight: 600;
  color: #ff7a18;
  margin-bottom: 6px;
}

/* Add helper text */
.woocommerce-Address address::after {
  content: "Add your delivery address to enjoy faster checkout 🚚";
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #888;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .woocommerce-MyAccount-content {
    padding: 15px;
  }

  .woocommerce-Address {
    padding: 25px 15px;
    border-radius: 14px;
  }

  .woocommerce-Address-title h2 {
    font-size: 18px;
  }

  .woocommerce-Address-title .edit {
    font-size: 13px;
    padding: 10px 16px;
  }

  .woocommerce-Address address {
    font-size: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-5d650ce *//* =========================
   Tastewala My Account Nav
   ========================= */
@media only screen and (min-width: 993px) {
    .woocommerce-MyAccount-navigation-wrapper {
        border-inline-end: 0px solid var(--et_border-color);
    }}
        
.woocommerce-MyAccount-navigation {
  width: 100%;
  margin-bottom: 2px;
  padding: 20px;
}

/* UL as FLEX CONTAINER */
.woocommerce-MyAccount-navigation ul {
  display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    justify-content: flex-start;
    align-items: center;
    
    gap: 15px; /* Increased gap for cleaner look */
    padding: 10px 0px; /* Padding for shadow clearance */
    list-style: none;

    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; /* Smooth swipe on iOS */
    scrollbar-width: none;
}

.woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
  display: none; /* Chrome */
}

/* LIST ITEMS */
.woocommerce-MyAccount-navigation ul li {
  flex: 0 0 auto;
}

/* LINKS AS BUTTONS */
.woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  transition: all 0.3s ease;
  
  /* Shadow */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ICON STYLE */
.woocommerce-MyAccount-navigation ul li a i {
  font-size: 16px;
  color: #ff7a18;
}

/* HOVER EFFECT */
.woocommerce-MyAccount-navigation ul li a:hover {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.woocommerce-MyAccount-navigation ul li a:hover i {
  color: #fff;
}

/* ACTIVE TAB */
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,122,24,0.4);
}

.woocommerce-MyAccount-navigation ul li.is-active a i {
  color: #fff;
}

/* LOGOUT BUTTON SPECIAL STYLE */
.woocommerce-MyAccount-navigation-link--customer-logout a {
  background: #fff0f0;
  color: #e53935;
}

.woocommerce-MyAccount-navigation-link--customer-logout a i {
  color: #e53935;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: #e53935;
  color: #fff;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover i {
  color: #fff;
}

/* =========================
   DESKTOP IMPROVEMENT
   ========================= */

@media (min-width: 768px) {
  .woocommerce-MyAccount-navigation ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
  }

  .woocommerce-MyAccount-navigation ul li a {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation ul {
    padding: 8px;
    gap: 10px;
  }

  .woocommerce-MyAccount-navigation ul li a {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
  }
.woocommerce-MyAccount-navigation {
  width: 100%;
  margin-bottom: 2px;
  padding: 2px;
}

  .woocommerce-MyAccount-navigation ul li a i {
    font-size: 14px;
  }
}



/* =========================
   Tastewala User Profile Card
   ========================= */
/* =========================
   Tastewala User Profile Card (Final)
   ========================= */

.MyAccount-user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  margin-bottom: 20px;

  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.MyAccount-user-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Avatar */
.MyAccount-user-info img.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;

  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Username */
.MyAccount-user-name {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-transform: capitalize;
  margin-bottom: 4px;
}

/* Hello text */
.MyAccount-user-name::before {
  content: "Hello, ";
  font-weight: 500;
  color: #ff7a18;
}

/* Email */
.MyAccount-user-info div div:last-child {
  font-size: 13px;
  color: #777;
  word-break: break-all;
  margin-bottom: 6px;
}

/* 🔥 Tagline below email */
.MyAccount-user-info div div:last-child::buttom {
  content: "👋 Welcome to Tastewala Family Fresh from Bihar, delivered to your home";
  display: block;
  font-size: 12px;
  color: #ff7a18;
  margin-top: 6px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .MyAccount-user-info {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .MyAccount-user-info img.avatar {
    width: 75px;
    height: 75px;
  }

  .MyAccount-user-name {
    font-size: 16px;
  }

  .MyAccount-user-info div div:last-child {
    font-size: 12px;
  }
}


/* =========================
   Tastewala My Account Dashboard UI
   ========================= */

/* Heading */
.woocommerce-MyAccount-content .title span {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}

/* Welcome text */
.woocommerce-MyAccount-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.woocommerce-MyAccount-content p strong {
  text-transform: capitalize;
  color: #ff7a18;
}

/* =========================
   DASHBOARD BUTTONS (CARDS)
   ========================= */

.MyAccount-dashboard-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

/* Buttons */
.MyAccount-dashboard-buttons .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  background: #fff;
  padding: 20px 15px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
  color: #333;

  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Icons */
.MyAccount-dashboard-buttons .btn i {
  font-size: 22px;
  margin-bottom: 8px;
  color: #ff7a18;
}

/* Hover */
.MyAccount-dashboard-buttons .btn:hover {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,122,24,0.3);
}

.MyAccount-dashboard-buttons .btn:hover i {
  color: #fff;
}

/* =========================
   BANNER DESIGN
   ========================= */

.MyAccount-banner {
  margin-top: 10px;
  margin-bottom: 25px;
  padding: 18px 20px;
  border-radius: 14px;

  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;

  font-size: 14px;
  font-weight: 500;
  text-align: center;

  line-height: 1.5;
  box-shadow: 0 8px 20px rgba(255,122,24,0.3);
}

/* =========================
   PRODUCT SECTION
   ========================= */

.swiper-entry {
  margin-top: 10px;
}

.swiper-entry .title span {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

/* Product cards */
.product {
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Add to cart button */
.product .button {
  border-radius: 8px;
  font-size: 13px;
  padding: 8px 12px;
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 768px) {

  .woocommerce-MyAccount-content .title span {
    font-size: 18px;
  }

  .MyAccount-dashboard-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .MyAccount-dashboard-buttons .btn {
    padding: 15px 10px;
    font-size: 13px;
  }

  .MyAccount-dashboard-buttons .btn i {
    font-size: 18px;
  }

  .MyAccount-banner {
    font-size: 13px;
    padding: 14px;
  }
}/* End custom CSS */