/* ============================
   WooCommerce My Account Styling
   ============================ */

/* Container */
.woocommerce-account .woocommerce {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}
.woocommerce-Tabs-panel ul{margin-bottom:20px !important;}

/* Navigation Sidebar */
.woocommerce-MyAccount-navigation {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 0.75rem;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
  background: #222;
  color: #fff;
}

/* Content Area */
.woocommerce-MyAccount-content {
  flex: 3 1 700px;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Headings */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #f2f2f2;
  padding-bottom: 0.5rem;
}

/* Buttons */
.woocommerce .button,
.woocommerce a.button {
  background: #0073e6;
  color: #fff !important;
  border-radius: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.woocommerce .button:hover,
.woocommerce a.button:hover {
  background: #222;
}

/* Tables (Orders, Addresses) */
.woocommerce table.my_account_orders,
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.woocommerce table.my_account_orders th,
.woocommerce table.shop_table th {
  background: #f9fafb;
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
}

.woocommerce table.my_account_orders td,
.woocommerce table.shop_table td {
  padding: 0.75rem;
  border-top: 1px solid #eee;
}

/* Forms (Addresses, Account details) */
.woocommerce form .form-row label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.6rem;
  transition: border 0.3s ease;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  border-color: #0073e6;
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
  }
  
  .woocommerce-MyAccount-navigation,
  .woocommerce-MyAccount-content {
    flex: 1 1 100%;
  }
}
