/* -----------------------------------------------------------
   SLV — MY ACCOUNT PAGE (Full Styling)
----------------------------------------------------------- */

/* Page wrapper */
.woocommerce-account .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Page title */
.woocommerce-account h2,
.woocommerce-account h3 {
  color: #111;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Navigation menu (left sidebar) */
.woocommerce-MyAccount-navigation {
  width: 260px;
  background: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
}

.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 14px;
  border-radius: 8px;
  color: #111;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .25s ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
  background: #ffffff;
  border-color: #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Layout: sidebar + content */
.woocommerce-account .woocommerce {
  display: flex;
  gap: 40px;
}

/* Content area */
.woocommerce-MyAccount-content {
  flex: 1;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Tables (Orders, Addresses, etc.) */
.woocommerce table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.woocommerce table th,
.woocommerce table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e0e0e0;
}

.woocommerce table th {
  background: #f7f7f7;
  font-weight: 600;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button {
  background: #001a96;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  transition: all .25s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: #001470;
  transform: translateY(-2px);
}

/* Forms (Edit account, Login, Address) */
.woocommerce form .form-row input,
.woocommerce form .form-row select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  transition: border .25s ease;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus {
  border-color: #001a96;
  background: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
  }

  .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}

/* SLV My Account Icons */
.woocommerce-MyAccount-navigation .slv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    margin-right: 10px;
}

.woocommerce-MyAccount-navigation .slv-icon i {
    font-size: 18px;
    color: #bfbfbf; /* silver */
    transition: color .25s ease;
}

.woocommerce-MyAccount-navigation a:hover .slv-icon i,
.woocommerce-MyAccount-navigation .is-active .slv-icon i {
    color: #001a96; /* SLV blue accent */
}
