/* Account Page Specific Styles */

/* Breadcrumbs */
.breadcrumbs {
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs span {
  margin: 0 var(--space-2);
}

/* Hero Section */
.account-hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin-bottom: var(--space-8);
}

.account-hero-content {
  padding: var(--space-6);
  flex: 1;
}

.account-hero-image {
  width: 100%;
  height: 250px;
  flex: 1;
}

.account-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop Hero */
@media (min-width: 768px) {
  .account-hero {
    flex-direction: row;
    align-items: stretch;
  }
  
  .account-hero-content {
    padding: var(--space-8);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .account-hero-image {
    height: auto;
    min-height: 300px;
  }
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .span-col-2 {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .span-col-2 {
    grid-column: span 2;
  }
}

/* Dashboard Card Styling */
.dashboard-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid transparent;
  transition: border-color var(--transition-fast), transform var(--transition-base), box-shadow var(--transition-base);
}

.dashboard-card:hover {
  border-top-color: var(--color-primary);
}

.card-icon {
  background-color: #fff4e6; /* Light orange tint */
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.dashboard-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
}

.dashboard-card p {
  color: var(--color-text-muted);
  flex-grow: 1;
  font-size: 0.95rem;
  margin-bottom: var(--space-6);
}

.dashboard-link {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.dashboard-link:hover {
  text-decoration: underline;
}

/* Featured Pet Profile Card */
.pet-profile-wrapper {
  background: linear-gradient(to right, #fdfbf7 0%, #fff 100%);
  padding: 0;
  flex-direction: column-reverse;
  overflow: hidden;
}

.pet-profile-content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pet-profile-image {
  width: 100%;
  height: 200px;
}

.pet-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 600px) {
  .pet-profile-wrapper {
    flex-direction: row;
    align-items: stretch;
  }
  
  .pet-profile-image {
    width: 40%;
    height: auto;
  }
}

.pet-profile-wrapper .card-icon {
  background-color: #e6fffa; /* Light teal/green tint */
  color: var(--color-accent);
}