/* --- Design Tokens & Variables --- */
:root {
  /* Colors */
  --primary-color: #ad7622;
  --primary-hover: #8f5c15;
  --primary-light: #f9f4ec;
  --text-dark: #2c251e;
  --text-muted: #6e6153;
  --bg-cream: #fcf8f4;
  --bg-white: #ffffff;
  --border-color: #e9decb;
  --accent-gold: #c68a35;
  --accent-soft: #f4eae1;
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(44, 37, 30, 0.05);
  --shadow-md: 0 10px 20px rgba(44, 37, 30, 0.08);
  --shadow-lg: 0 15px 35px rgba(44, 37, 30, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Layout */
  --container-width: 1240px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.5;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --- Layout Utility --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.divider {
  opacity: 0.3;
  font-weight: 300;
}

/* --- Utility Bar --- */
.utility-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.utility-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.utility-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}

.utility-item .icon {
  width: 14px;
  height: 14px;
}

.utility-right .utility-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--bg-white);
  opacity: 0.9;
}

.utility-right .utility-link:hover {
  opacity: 1;
}

.utility-right .utility-link .icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.utility-right .utility-link:hover .icon {
  transform: translateX(3px);
}

/* --- Main Header --- */
.main-header {
  background-color: var(--bg-white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 75px;
  object-fit: contain;
  transition: height var(--transition-fast);
}

.main-header .brand-logo {
  height: 75px;
}

.site-footer .brand-logo {
  height: 95px;
}

/* Desktop Navigation */
.desktop-nav > ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .has-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.desktop-nav .has-dropdown:hover {
  color: var(--primary-color);
}

.desktop-nav .dropdown-caret {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* Search Bar */
.search-container {
  flex-grow: 1;
  max-width: 280px;
  position: relative;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 8px 16px;
  padding-right: 40px;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-input:focus {
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(173, 118, 34, 0.15);
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  color: var(--primary-color);
}

.search-btn .icon {
  width: 16px;
  height: 16px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-btn {
  color: var(--text-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.action-btn:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.action-btn .icon {
  width: 22px;
  height: 22px;
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  transform-origin: left center;
}

/* Mobile Overlay Navigation */
.mobile-nav {
  position: fixed;
  top: 83px;
  left: 0;
  width: 100%;
  height: calc(100vh - 83px);
  background-color: var(--bg-white);
  z-index: 99;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  border-top: 1px solid var(--border-color);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-menu-links ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-links a {
  font-size: 18px;
  font-weight: 600;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--primary-light);
}

.mobile-search {
  margin-top: auto;
  margin-bottom: 40px;
}

.mobile-search .search-input {
  padding: 12px 20px;
  font-size: 16px;
}

/* --- Hero Section --- */
.hero-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, #ffffff 100%);
  padding: 60px 0 80px 0;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-content h1 .accent-text {
  color: var(--primary-color);
  font-style: italic;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  font-size: 16px;
  font-weight: 600;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-filled {
  background-color: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(173, 118, 34, 0.2);
}

.btn-filled:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(173, 118, 34, 0.3);
}

.btn-filled:active {
  transform: translateY(0);
}

.btn-outlined {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outlined:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outlined:active {
  transform: translateY(0);
}

/* Hero Badges Grid */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  max-width: 480px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon-wrapper .icon {
  width: 20px;
  height: 20px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.badge-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero Image Column */
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Linear gradient overlay to blend image with text on the left */
.hero-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-cream) 0%, transparent 40%);
  z-index: 3;
  pointer-events: none;
}

.watermark-bg {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
  transition: transform var(--transition-slow);
}

.hero-image-container:hover .hero-img {
  transform: scale(1.02);
}

/* --- Categories Section --- */
.categories-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  cursor: pointer;
}

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

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(44, 37, 30, 0.05) 0%, rgba(44, 37, 30, 0.8) 100%);
  z-index: 1;
  transition: opacity var(--transition-normal);
}

.category-card:hover .card-overlay {
  background: linear-gradient(180deg, rgba(44, 37, 30, 0.1) 0%, rgba(44, 37, 30, 0.9) 100%);
}

.card-content {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
  width: 100%;
}

.card-content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 4px;
}

.card-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
  font-weight: 300;
}

.circle-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.circle-arrow-btn .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.category-card:hover .circle-arrow-btn {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.1);
}

.category-card:hover .circle-arrow-btn .icon {
  transform: translateX(2px);
}

/* --- Marketplaces Section --- */
.marketplaces-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: -25px auto 40px auto;
  line-height: 1.5;
}

.marketplaces-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.marketplace-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  filter: none;
  opacity: 1;
}

.marketplace-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

/* Specific Marketplace Logos */
.marketplace-logo {
  max-height: 24px;
  color: #111;
}

/* eBay Styling */
.ebay-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.5px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ebay-text .e { color: #e53238; }
.ebay-text .b { color: #0064d2; }
.ebay-text .a { color: #f5af02; }
.ebay-text .y { color: #86b817; }

/* Walmart Styling */
.walmart-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}
.walmart-spark {
  width: 22px;
  height: 22px;
}
.walmart-text {
  font-size: 20px;
  font-weight: 700;
  color: #0071dc;
  letter-spacing: -0.5px;
  font-family: Arial, sans-serif;
}

/* Etsy Styling */
.etsy-text {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #eb6d20;
}

/* Wayfair Styling */
.wayfair-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wayfair-logo {
  width: 24px;
  height: 24px;
  color: #7f187f;
}
.wayfair-text {
  font-size: 18px;
  font-weight: 700;
  color: #7f187f;
  font-family: sans-serif;
  letter-spacing: -0.5px;
}

/* + More Styling */
.more-card {
  background-color: transparent;
  border: 1px dashed var(--border-color);
  filter: none;
  opacity: 1;
  cursor: pointer;
}
.more-card:hover {
  background-color: var(--bg-white);
  border-style: solid;
}
.more-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

/* --- Value Badges Section --- */
.value-section {
  padding: 50px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.value-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.value-content p {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Footer --- */
.site-footer {
  background-color: #faf6f0;
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-col a:hover {
  color: var(--primary-color);
}
.brand-col .footer-logo {
  margin-bottom: 20px;
  display: inline-block;
}
.brand-tagline {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}
.social-icons {
  display: flex;
  gap: 16px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.social-icons a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}
.social-icons .icon {
  width: 18px;
  height: 18px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px !important;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.contact-list li .icon {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-list li a {
  color: var(--text-muted);
}
.contact-list li a:hover {
  color: var(--primary-color);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom-links a {
  color: var(--text-muted);
}
.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* --- Secondary Pages Shared Layout --- */
.page-hero {
  background: linear-gradient(180deg, var(--bg-cream) 0%, #ffffff 100%);
  padding: 60px 0 80px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}
.page-hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.page-hero-content .subtitle {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
}
.page-hero-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 540px;
}

/* --- Shop Categories Page Components --- */
.browse-categories {
  padding: 80px 0;
  background-color: var(--bg-white);
}
.browse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.browse-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.browse-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.browse-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.category-badge-icon {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.category-badge-icon svg {
  width: 22px;
  height: 22px;
}
.browse-card-body {
  padding: 40px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}
.browse-card-body h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.browse-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.category-links-list {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}
.category-links-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.category-links-list a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.category-links-list a:hover {
  color: var(--primary-color);
}
.category-arrow-orange {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: bold;
}
.browse-card-body .btn-outlined {
  width: 100%;
  margin-top: auto;
  padding: 10px 20px;
  font-size: 14px;
}

/* --- Brands & Suppliers Page Components --- */
.why-partner-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}
.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.partner-benefit-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.partner-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
  border-color: var(--primary-color);
}
.benefit-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: var(--shadow-sm);
}
.benefit-icon-wrapper svg {
  width: 24px;
  height: 24px;
}
.partner-benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.partner-benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.how-we-work-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
  text-align: center;
}
.workflow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 50px;
  position: relative;
}
.workflow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.step-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.workflow-step:hover .step-icon-circle {
  border-color: var(--primary-color);
  color: var(--bg-white);
  background-color: var(--primary-color);
  transform: scale(1.05);
}
.step-icon-circle svg {
  width: 28px;
  height: 28px;
}
.workflow-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.workflow-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 180px;
}
.workflow-arrow {
  width: 32px;
  height: 2px;
  background-color: var(--border-color);
  position: relative;
  flex-shrink: 0;
  margin-bottom: 40px;
}
.workflow-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  transform: rotate(45deg);
}

.partner-form-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}
.partner-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.benefits-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 24px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.benefits-list li svg {
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.partnership-banner {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.partnership-banner-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  flex-shrink: 0;
}
.partnership-banner-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.partnership-banner-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}
.partnership-banner-body .btn-outlined {
  padding: 8px 16px;
  font-size: 13px;
}
.form-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group-full {
  grid-column: span 2;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(173, 118, 34, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-card .btn-filled {
  width: 100%;
  margin-top: 24px;
}

/* --- About Us Page Components --- */
.about-main-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.about-col-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 12px;
}
.who-we-are-col img {
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.who-we-are-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.operational-pillar {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg {
  width: 18px;
  height: 18px;
}
.pillar-body h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.pillar-body p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
/* Values Column (2x2 grid inside About Us main grid) */
.values-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.value-mini-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.value-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}
.value-mini-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-mini-card-icon svg {
  width: 16px;
  height: 16px;
}
.value-mini-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.value-mini-card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* About Us Presence Section (Full Width) */
.about-presence-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.values-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-color);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.value-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.value-card-icon svg {
  width: 24px;
  height: 24px;
}
.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.callout-banner-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}
.callout-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  border-radius: var(--border-radius-lg);
  padding: 60px 80px;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.callout-banner-left {
  flex: 1;
}
.callout-banner-left h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}
.callout-banner-left p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
}
.callout-banner-right {
  flex-shrink: 0;
}
.callout-banner-right .btn {
  border: 2px solid var(--bg-white);
  color: var(--bg-white);
  background-color: transparent;
}
.callout-banner-right .btn:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

/* --- Resources Page Components --- */
.resource-types-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}
.resource-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.resource-type-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.resource-type-card:hover {
  background-color: var(--bg-white);
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.type-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.type-icon-wrapper svg {
  width: 22px;
  height: 22px;
}
.resource-type-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.resource-type-card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
  flex-grow: 1;
}
.resource-type-card .link-arrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.resource-type-card:hover .link-arrow {
  color: var(--primary-hover);
}

.featured-resources-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-color);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.featured-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.featured-image-wrapper {
  height: 160px;
  position: relative;
}
.featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resource-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.featured-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.featured-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text-dark);
}
.featured-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.featured-body .link-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.help-center-callout {
  padding: 80px 0;
  background-color: var(--bg-white);
}
.help-center-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 60px;
}
.help-main-info h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 12px;
}
.help-main-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.help-col-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.help-col-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.help-col-icon svg {
  width: 20px;
  height: 20px;
}
.help-col-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.help-col-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}
.help-col-item .link-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 4px;
}
.newsletter-signup-box {
  margin-top: 60px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.newsletter-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-grow: 1;
  max-width: 480px;
}
.newsletter-form input {
  flex-grow: 1;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
}
.newsletter-form input:focus {
  border-color: var(--primary-color);
}

/* --- Contact Us Page Components --- */
.contact-layout-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}
.response-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.response-note svg {
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.info-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 40px;
}
.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px;
  height: 20px;
}
.info-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.info-body p, .info-body a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.info-card .partnership-banner {
  background-color: var(--bg-white);
  border-color: var(--border-color);
  padding: 24px;
}

.inquiry-types-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-color);
  text-align: center;
}
.inquiry-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.inquiry-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.inquiry-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
}
.inquiry-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}
.inquiry-icon svg {
  width: 20px;
  height: 20px;
}
.inquiry-card h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.inquiry-card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-badges {
    margin-left: auto;
    margin-right: auto;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .marketplaces-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .value-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Secondary page layouts */
  .page-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .page-hero-content h1 {
    font-size: 42px;
  }
  .page-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .browse-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-container {
    flex-direction: column;
    gap: 30px;
  }
  .workflow-arrow {
    transform: rotate(90deg);
    margin-bottom: 0;
    margin-top: 10px;
  }
  .partner-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .resource-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .help-center-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .newsletter-signup-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .newsletter-form {
    max-width: 100%;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }
  .footer-col.contact-col {
    grid-column: span 3;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  /* Toggle Nav Visibility */
  .desktop-nav {
    display: none;
  }
  
  .search-container {
    display: none; /* Hide on mobile/tablet search box in header, use mobile overlay instead */
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  /* Hamburger Transformation */
  .mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(2px, 1px);
  }
  .mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -1px);
  }
  
  .brand-logo {
    height: 55px;
  }
  
  .utility-left {
    display: none; /* Hide left utility items on small screens */
  }
  
  .utility-container {
    justify-content: center;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .value-container {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  /* Secondary pages */
  .browse-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .why-partner-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .resource-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .inquiry-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .callout-banner {
    padding: 40px;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col.contact-col {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-badges {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .marketplaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Secondary pages */
  .page-hero-content h1 {
    font-size: 32px;
  }
  .resource-types-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-types-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .form-card {
    padding: 24px;
  }
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-badges {
    margin-left: auto;
    margin-right: auto;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .marketplaces-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .value-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  /* Toggle Nav Visibility */
  .desktop-nav {
    display: none;
  }
  
  .search-container {
    display: none; /* Hide on mobile/tablet search box in header, use mobile overlay instead */
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  /* Hamburger Transformation */
  .mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(2px, 1px);
  }
  .mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -1px);
  }
  
  .brand-logo {
    height: 55px;
  }
  
  .utility-left {
    display: none; /* Hide left utility items on small screens */
  }
  
  .utility-container {
    justify-content: center;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .value-container {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-badges {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .marketplaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- About Us Page Landscape Layout --- */
.about-grid-landscape {
  display: grid;
  grid-template-columns: 2.3fr 3fr 1.7fr;
  gap: 30px;
  align-items: start;
}

.who-we-are-col-landscape {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.who-we-are-col-landscape .dog-img-wrapper {
  flex: 0 0 170px;
}

.who-we-are-col-landscape .dog-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

.who-we-are-col-landscape .text-content {
  flex: 1;
}

.who-we-are-col-landscape .text-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
}

.who-we-are-col-landscape .text-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.what-we-do-col-landscape h2,
.marketplace-presence-col-landscape h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
}

.what-we-do-row-landscape {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.what-we-do-card-landscape {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.what-we-do-card-landscape .card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.what-we-do-card-landscape .card-icon svg {
  width: 16px;
  height: 16px;
}

.what-we-do-card-landscape h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.what-we-do-card-landscape p {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}

.marketplace-presence-col-landscape p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 15px;
}

.marketplace-grid-landscape {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.marketplace-card-landscape {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 8px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.marketplace-card-landscape .marketplace-logo {
  max-height: 18px;
  max-width: 100%;
}

.marketplace-card-landscape .ebay-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -1px;
}

.marketplace-card-landscape .ebay-text .e { color: #e53238; }
.marketplace-card-landscape .ebay-text .b { color: #0064d2; }
.marketplace-card-landscape .ebay-text .a { color: #fec107; }
.marketplace-card-landscape .ebay-text .y { color: #86b817; }

.marketplace-card-landscape .walmart-wrapper,
.marketplace-card-landscape .wayfair-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.marketplace-card-landscape .walmart-text {
  font-size: 12px;
  font-weight: 700;
  color: #0071dc;
}

.marketplace-card-landscape .etsy-text {
  font-size: 14px;
  font-weight: 700;
  color: #eb6d20;
}

.marketplace-card-landscape .wayfair-text {
  font-size: 12px;
  font-weight: 700;
  color: #7f187f;
}

.marketplace-card-landscape .more-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Values Section Landscape Layout */
.values-section-landscape {
  padding: 60px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-color);
}

.values-section-landscape .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.values-section-landscape .section-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
}

.values-container-landscape {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.values-cards-row-landscape {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-landscape-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.value-landscape-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.value-landscape-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-landscape-card-icon svg {
  width: 20px;
  height: 20px;
}

.value-landscape-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.value-landscape-card-body p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Values CTA Box */
.values-cta-box-landscape {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  border-radius: var(--border-radius-md);
  padding: 30px;
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.values-cta-box-landscape::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1.5'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c0 2-2 2-3 7a21 21 0 0 1-5 11z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.values-cta-box-landscape h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.values-cta-box-landscape p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.values-cta-box-landscape .btn-white {
  background-color: var(--bg-white);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid var(--bg-white);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  position: relative;
  z-index: 1;
}

.values-cta-box-landscape .btn-white:hover {
  background-color: transparent;
  color: var(--bg-white);
}

.values-cta-box-landscape .btn-white svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.values-cta-box-landscape .btn-white:hover svg {
  transform: translateX(3px);
}

/* Landscape Responsive Overrides */
@media (max-width: 1024px) {
  .about-grid-landscape {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .who-we-are-col-landscape {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .who-we-are-col-landscape .dog-img-wrapper {
    flex: 0 0 auto;
    width: 240px;
  }
  .who-we-are-col-landscape .text-content h2 {
    text-align: center;
  }
  .what-we-do-row-landscape {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .values-container-landscape {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .what-we-do-row-landscape {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-cards-row-landscape {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .what-we-do-row-landscape {
    grid-template-columns: 1fr;
  }
}

/* Footer Features Bar */
.footer-features-bar {
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}
.footer-features-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.feature-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}
.feature-text h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.feature-text p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}
.feature-divider {
  color: var(--border-color);
  font-weight: 300;
}

@media (max-width: 1024px) {
  .footer-features-container {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .feature-divider {
    display: none;
  }
  .feature-badge {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
}


