/* ACCOUNT PAGES STYLES */

.auth-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  background: var(--gray-50);
  padding: 60px 0;
}

.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  max-width: 450px;
  margin: 0 auto;
}

.auth-title {
  color: #07484a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.auth-subtitle {
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 30px;
}

.auth-form .form-label {
  color: #07484a;
  font-weight: 600;
}

.auth-form .form-control {
  padding: 12px 15px;
  border-radius: 10px;
  border-color: var(--gray-200);
}

.auth-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.btn-auth {
  padding: 12px;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 10px;
}

.social-auth {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.social-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  color: #07484a;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gray-50);
  border-color: var(--primary);
}

/* Dashboard */
.dashboard-wrapper {
  padding: 50px 0;
  background: var(--gray-50);
}

.dashboard-sidebar {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #07484a;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.sidebar-link i {
  width: 20px;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: var(--primary);
  color: #fff;
}

.dashboard-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 25px;
}

.dash-stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  text-align: center;
}

.dash-stat-card i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
}

.dash-stat-val {
  font-size: 24px;
  font-weight: 700;
  color: #07484a;
}

.dash-stat-label {
  color: var(--gray-600);
  font-size: 14px;
}

.table-custom {
  color: #07484a;
}

.table-custom th {
  font-weight: 700;
  background: var(--gray-50);
}

.order-status {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.status-shipped {
  background: #e3fcef;
  color: #00875a;
}
.status-pending {
  background: #fffadc;
  color: #974f0c;
}

/* Wishlist */
.wishlist-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--gray-200);
}

.wishlist-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--gray-50);
  border-radius: 10px;
  margin-right: 20px;
}

.wishlist-info h6 {
  color: #07484a;
  margin-bottom: 5px;
}

.wishlist-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

/* Address Cards */
.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.address-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 15px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.address-card.default {
  border-color: var(--primary);
  background: rgba(255, 193, 7, 0.02);
}

.address-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.address-type {
  display: inline-block;
  padding: 2px 10px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #07484a;
  margin-bottom: 10px;
}

.address-type.home {
  background: #e3f2fd;
  color: #1976d2;
}
.address-type.office {
  background: #f3e5f5;
  color: #7b1fa2;
}

.address-card h6 {
  color: #07484a;
  font-weight: 700;
  margin-bottom: 5px;
}

.address-card p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 15px;
  line-height: 1.4;
}

.address-actions {
  display: flex;
  gap: 15px;
  border-top: 1px solid var(--gray-100);
  padding-top: 15px;
}

.address-action-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.address-action-btn:hover {
  color: #07484a;
}

.address-action-btn.delete:hover {
  color: #dc3545;
}

.add-address-card {
  border: 2px dashed var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  min-height: 180px;
  color: var(--gray-400);
}

.add-address-card i {
  font-size: 32px;
  margin-bottom: 10px;
}

.add-address-card:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 193, 7, 0.02);
}
