/* === WooCommerce My Account Page Styling === */

/* General container */
.woocommerce-account .woocommerce {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Navigation tabs (Dashboard, Orders, etc.) */
.woocommerce-MyAccount-navigation {
  float: left;
  width: 25%;
  background: #f8f9fb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 12px;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
  background: var(--primary); /* your brand color */
  color: #fff;
}

/* Content area */
.woocommerce-MyAccount-content {
  float: right;
  width: 72%;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

/* Headings inside account */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  margin-top: 0;
  font-size: 20px;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Tables (Orders, Addresses, etc.) */
.woocommerce table.shop_table {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.woocommerce table.shop_table th {
  background: #f8f9fb;
  font-weight: 600;
  padding: 12px;
}

.woocommerce table.shop_table td {
  padding: 12px;
  border-top: 1px solid #eee;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button {
  background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-family: var(--heading-font);
    font-weight: 400;
    padding: 0.7em 2.5em;
    transition: all 0.4s
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background-color: var(--primary);
    
  color: #fff
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation,
  .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}
