.pots-hero {
  padding: var(--space-10) 0;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sage-50) 100%);
}

.pots-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .pots-hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.pots-hero__content {
  max-width: 600px;
}

.breadcrumb {
  margin-bottom: var(--space-4);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-warm-gray-400);
}

.breadcrumb__item a:hover {
  color: var(--color-accent);
}

.pots-hero__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  margin-bottom: var(--space-5);
  color: var(--color-sage-900);
}

.pots-hero__description {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.pots-hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.pots-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.pots-categories {
  padding: var(--space-14) 0;
  background-color: var(--color-background);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-10);
  color: var(--color-sage-900);
}

.pots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

@media (max-width: 640px) {
  .pots-grid {
    grid-template-columns: 1fr;
  }
}

.pot-category {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-warm-gray-100);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pot-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pot-category__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.pot-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.pot-category:hover .pot-category__image img {
  transform: scale(1.05);
}

.pot-category__content {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pot-category__content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-sage-900);
}

.pot-category__content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
  flex-grow: 1;
  line-height: var(--leading-relaxed);
}

.pot-category__content .btn {
  align-self: flex-start;
}

.size-guide {
  padding: var(--space-14) 0;
  background-color: var(--color-sage-50);
}

.size-guide__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.size-guide__content {
  text-align: center;
}

.size-guide__content h2 {
  color: var(--color-sage-900);
  margin-bottom: var(--space-4);
}

.size-guide__intro {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.size-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  text-align: left;
}

.size-card {
  background-color: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-sage-200);
  transition: border-color var(--transition-fast);
}

.size-card:hover {
  border-color: var(--color-sage-400);
}

.size-card__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.size-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-sage-900);
}

.size-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

.room-styling {
  padding: var(--space-14) 0;
  background-color: var(--color-background);
}

.room-styling__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 968px) {
  .room-styling__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.room-styling__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.room-styling__image img {
  width: 100%;
  height: auto;
  display: block;
}

.room-styling__content h2 {
  color: var(--color-sage-900);
  margin-bottom: var(--space-4);
}

.room-styling__content p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
  line-height: var(--leading-relaxed);
}

.room-styling__list {
  list-style: none;
  margin-bottom: var(--space-6);
}

.room-styling__list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.room-styling__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background-color: var(--color-leaf);
  border-radius: 50%;
}

.pot-care {
  padding: var(--space-14) 0;
  background-color: var(--color-warm-gray-100);
}

.pot-care__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pot-care__content h2 {
  color: var(--color-sage-900);
  margin-bottom: var(--space-4);
}

.pot-care__intro {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.care-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  text-align: left;
}

.care-tip {
  background-color: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-sage-400);
}

.care-tip h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-sage-900);
}

.care-tip p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin: 0;
}

.bestsellers {
  padding: var(--space-14) 0;
  background-color: var(--color-background);
}

.bestsellers__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-10);
}

.bestsellers__header h2 {
  color: var(--color-sage-900);
  margin-bottom: var(--space-4);
}

.bestsellers__header p {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
}

.bestsellers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.product-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.product-card__image-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  background-color: var(--color-sage-50);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-600);
}

.product-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-sage-900);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.pot-sets {
  padding: var(--space-14) 0;
  background: linear-gradient(135deg, var(--color-sage-800) 0%, var(--color-sage-900) 100%);
  color: var(--color-cream);
}

.pot-sets__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pot-sets__content h2 {
  color: var(--color-cream);
  margin-bottom: var(--space-4);
}

.pot-sets__content p {
  color: var(--color-sage-200);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.pot-sets__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.pot-sets__actions .btn--accent {
  background-color: var(--color-terracotta-500);
  border-color: var(--color-terracotta-500);
}

.pot-sets__actions .btn--accent:hover {
  background-color: var(--color-terracotta-700);
  border-color: var(--color-terracotta-700);
}

.pot-sets__actions .btn--secondary {
  color: var(--color-cream);
  border-color: var(--color-cream);
}

.pot-sets__actions .btn--secondary:hover {
  background-color: rgba(250, 248, 243, 0.1);
}

@media (max-width: 640px) {
  .pots-hero {
    padding: var(--space-8) 0;
  }
  
  .pots-grid {
    grid-template-columns: 1fr;
  }
  
  .size-guide__grid {
    grid-template-columns: 1fr;
  }
  
  .care-tips {
    grid-template-columns: 1fr;
  }
  
  .bestsellers__grid {
    grid-template-columns: 1fr;
  }
}