/* _CSS-professional-amazon-home.css */

:root {
  --primary-accent: #C66B3D;     /* Desert Clay */
  --secondary-accent: #F4A259;   /* Sonoran Sunset Orange */
  --background-light: #FFF7ED;   /* Creamy Sandstone */
  --highlight: #88A096;          /* Sagebrush Green */
  --menu-bg: #FBEBDD;            /* Soft sandstone clay */
  --photo-bg: #EAD2C6;           /* Warm neutral behind images */
  --text-main: #2E1B0E;          /* Western Coffee */
  --link-hover: #5F7161;         /* Muted cactus */
}

.b2b-supply-section {
  width: 980px;
  background-color: var(--background-light);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  border: 1px solid var(--photo-bg);
}

/* Compact Category Header */
.category-header-row {
  background-color: var(--menu-bg);
  border-bottom: 2px solid var(--primary-accent);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-header-row h2 {
  margin: 0;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
}

.category-tag {
  font-size: 0.75em;
  font-weight: bold;
  background: var(--highlight);
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
}

/* Tightened Product Rows */
.product-row {
  display: flex;
  align-items: center;
  padding: 8px 20px; /* Reduced padding */
  border-bottom: 1px solid var(--photo-bg);
  transition: background-color 0.2s ease;
}

.product-row:nth-child(even) {
  background-color: rgba(234, 210, 198, 0.15); /* Subtle Zebra Stripe */
}

.product-row:hover {
  background-color: var(--menu-bg);
}

.product-main-content {
  flex-grow: 1;
  padding-right: 20px;
}

/* Name and Price on one line */
.product-header-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2px;
}

.product-name {
  font-weight: 700;
  font-size: 1em;
  color: var(--text-main);
}

.product-price {
  font-weight: 700;
  color: var(--primary-accent);
  font-size: 0.95em;
  margin-left: 15px;
}

.product-desc {
  font-size: 0.85em;
  color: var(--text-main);
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* Keeps description to one line */
  max-width: 600px;
}

/* Compact Button */
.amazon-link-wrap {
  flex-shrink: 0;
  width: 160px;
  text-align: right;
}

.amazon-btn-sm {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--primary-accent);
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.75em;
  border-radius: 2px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.amazon-btn-sm:hover {
  background-color: var(--primary-accent);
  color: #FFF;
}