@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-inter: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --background: hsl(220, 20%, 97%);
  --foreground: hsl(222, 47%, 11%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 47%, 11%);
  --primary: hsl(222, 47%, 14%);
  --primary-foreground: hsl(45, 100%, 90%);
  --muted: hsl(220, 14%, 92%);
  --muted-foreground: hsl(220, 9%, 46%);
  --accent: hsl(45, 80%, 55%);
  --accent-foreground: hsl(222, 47%, 11%);
  --border: hsl(220, 13%, 88%);
  --radius: 0.625rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-inter);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ─── UTILITIES ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9375rem; transition: all 0.2s;
  text-decoration: none; cursor: pointer; border: none; font-family: inherit;
}
.btn-accent { background: var(--accent); color: var(--accent-foreground); }
.btn-accent:hover { background: hsl(45, 80%, 48%); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.btn-outline-dark:hover { background: var(--muted); }
.btn-lg { padding: 0.875rem 2rem; height: 3rem; }

.badge {
  display: inline-flex; align-items: center; padding: 0.25rem 0.625rem;
  border-radius: 0.375rem; font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-accent { background: hsla(45,80%,55%,0.12); color: var(--accent); }
.badge-primary { background: hsla(222,47%,14%,0.1); color: var(--primary); }

.section-tag {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--accent); display: block; margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; line-height: 1.15; color: var(--foreground);
}
.section-title-white { color: #fff; }
.section-desc { color: var(--muted-foreground); margin-top: 1rem; max-width: 36rem; }

/* ─── PAGE WRAPPER ─── */
#app { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsla(222,47%,14%,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; max-width: 1280px; margin: 0 auto; padding: 0 1rem;
}
@media (min-width: 1024px) { .navbar-inner { height: 5rem; padding: 0 2rem; } }

.navbar-logo { display: flex; align-items: center; gap: 0.75rem; }
.navbar-logo img { height: 2.5rem; width: 2.5rem; border-radius: 0.5rem; object-fit: cover; }
.logo-name { display: block; font-weight: 700; font-size: 1rem; color: #fff; letter-spacing: -0.01em; }
.logo-sub { display: block; font-size: 0.625rem; color: var(--accent); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }

.nav-links { display: none; gap: 0.25rem; align-items: center; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  border-radius: var(--radius); transition: all 0.2s; color: rgba(255,255,255,0.7);
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(255,255,255,0.1); }

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: block; } }

.mobile-toggle { display: flex; background: none; color: #fff; padding: 0.5rem; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu { display: none; background: var(--primary); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: block; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500;
  border-radius: var(--radius); color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--accent); background: rgba(255,255,255,0.1); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 0.75rem; }

/* ─── PAGE HEADER ─── */
.page-header { background: var(--primary); padding: 4rem 0; margin-top: 4rem; }
@media (min-width: 1024px) { .page-header { padding: 5rem 0; margin-top: 5rem; } }
.page-header .section-tag { margin-bottom: 0.75rem; }
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700; color: #fff; margin-top: 0.5rem; line-height: 1.1;
}
.page-header p { color: rgba(255,255,255,0.5); margin-top: 1rem; max-width: 36rem; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden; margin-top: 0; padding-top: 4rem;
}
@media (min-width: 1024px) { .hero { padding-top: 5rem; } }

.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsla(222,47%,14%,0.97) 0%, hsla(222,47%,14%,0.82) 55%, hsla(222,47%,14%,0.45) 100%);
}
.hero-content { position: relative; padding: 7rem 0 5rem; max-width: 42rem; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  background: hsla(45,80%,55%,0.15); border: 1px solid hsla(45,80%,55%,0.3);
  color: var(--accent); font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.0625rem; color: rgba(255,255,255,0.62); line-height: 1.7; max-width: 32rem; margin-bottom: 2.5rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.stat-item { display: flex; align-items: center; gap: 0.75rem; }
.stat-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.stat-icon svg { width: 1.25rem; height: 1.25rem; color: var(--accent); stroke: var(--accent); }
.stat-value { font-size: 1.125rem; font-weight: 700; color: #fff; }
.stat-label { font-size: 0.6875rem; color: rgba(255,255,255,0.4); }

/* ─── PRODUCT HIGHLIGHTS ─── */
.product-highlights { padding: 6rem 0; background: var(--background); }
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.product-card-home {
  display: block; background: var(--card); border-radius: 0.75rem;
  border: 1px solid var(--border); overflow: hidden; transition: all 0.3s;
}
.product-card-home:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: hsla(45,80%,55%,0.3); }
.product-card-img { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--muted); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card-home:hover .product-card-img img { transform: scale(1.05); }
.product-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.625rem; border-radius: 0.375rem;
  background: hsla(222,47%,14%,0.92); color: var(--primary-foreground);
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.product-card-body { padding: 1.25rem; }
.product-card-body h3 { font-weight: 600; color: var(--foreground); transition: color 0.2s; }
.product-card-home:hover .product-card-body h3 { color: var(--accent); }
.product-card-body p { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.learn-more { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--accent); font-size: 0.875rem; font-weight: 500; margin-top: 1rem; }
.learn-more svg { width: 0.875rem; height: 0.875rem; transition: transform 0.2s; }
.product-card-home:hover .learn-more svg { transform: translateX(3px); }

/* ─── SUPPLIERS STRIP ─── */
.suppliers-strip { padding: 5rem 0; background: var(--primary); }
.grid-5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-5 { grid-template-columns: repeat(5, 1fr); } }

.supplier-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem 1rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.supplier-card:hover { border-color: hsla(45,80%,55%,0.3); background: rgba(255,255,255,0.05); }
.supplier-card .name { font-size: 1.25rem; font-weight: 700; color: #fff; transition: color 0.2s; }
.supplier-card:hover .name { color: var(--accent); }
.supplier-card .tagline { font-size: 0.6875rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }

/* ─── WHY CHOOSE US ─── */
.why-choose { padding: 6rem 0; background: hsl(220,14%,95%); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--card); border-radius: 0.75rem; border: 1px solid var(--border);
  padding: 1.75rem; transition: all 0.3s;
}
.feature-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-color: hsla(45,80%,55%,0.2); }
.feature-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: hsla(45,80%,55%,0.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem; transition: background 0.2s;
}
.feature-card:hover .feature-icon { background: hsla(45,80%,55%,0.2); }
.feature-icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--accent); }
.feature-card h3 { font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ─── CTA SECTION ─── */
.cta-section { padding: 6rem 0; background: var(--background); text-align: center; }
.cta-section .section-desc { margin: 1rem auto 0; }
.cta-btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; }

/* ─── PRODUCTS PAGE ─── */
.products-page { padding: 2.5rem 0 4rem; }
.filters { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 1024px) { .filters { flex-direction: row; align-items: center; } }

.search-wrap { position: relative; flex: 1; max-width: 28rem; }
.search-wrap svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; stroke: var(--muted-foreground); }
.search-input {
  width: 100%; padding: 0.625rem 1rem 0.625rem 2.5rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--card); font-size: 0.875rem; font-family: inherit;
  outline: none; transition: box-shadow 0.2s;
}
.search-input:focus { box-shadow: 0 0 0 2px hsla(45,80%,55%,0.3); }

.filter-wrap { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.filter-icon { width: 1rem; height: 1rem; stroke: var(--muted-foreground); }
.filter-select {
  padding: 0.625rem 0.75rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--card); font-size: 0.875rem; font-family: inherit;
  outline: none; cursor: pointer; transition: box-shadow 0.2s;
}
.filter-select:focus { box-shadow: 0 0 0 2px hsla(45,80%,55%,0.3); }

.products-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  display: block; background: var(--card); border-radius: 0.75rem;
  border: 1px solid var(--border); overflow: hidden; transition: all 0.3s;
}
.product-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: hsla(45,80%,55%,0.3); }
.product-card-img2 { aspect-ratio: 1; overflow: hidden; background: var(--muted); }
.product-card-img2 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img2 img { transform: scale(1.05); }
.product-card-placeholder { aspect-ratio: 1; background: var(--muted); display: flex; align-items: center; justify-content: center; }
.product-card-placeholder span { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: hsla(222,47%,14%,0.15); }
.product-card-body2 { padding: 1.25rem; }
.product-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.product-card-body2 h3 { font-weight: 600; color: var(--foreground); transition: color 0.2s; }
.product-card:hover .product-card-body2 h3 { color: var(--accent); }
.product-meta { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }

.no-products { text-align: center; padding: 5rem 0; color: var(--muted-foreground); }
.no-products button {
  margin-top: 1rem; padding: 0.625rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--card);
  font-family: inherit; font-size: 0.875rem; cursor: pointer; transition: background 0.2s;
}
.no-products button:hover { background: var(--muted); }

/* ─── PRODUCT DETAIL ─── */
.product-detail { padding: 1.5rem 0 5rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 2rem; transition: color 0.2s; }
.back-link:hover { color: var(--accent); }
.back-link svg { width: 1rem; height: 1rem; stroke: currentColor; }

.detail-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 1fr 1fr; } }
.detail-image { aspect-ratio: 1; border-radius: 0.75rem; overflow: hidden; background: var(--muted); border: 1px solid var(--border); }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.detail-placeholder span { font-family: var(--font-display); font-size: 5rem; font-weight: 700; color: hsla(222,47%,14%,0.12); }

.detail-info h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--foreground); margin: 0.75rem 0 1rem; }
.detail-info p { color: var(--muted-foreground); line-height: 1.7; margin-top: 1rem; }
.detail-specs { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.spec-row { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border-radius: var(--radius); background: hsl(220,14%,95%); border: 1px solid var(--border); }
.spec-icon { width: 1.25rem; height: 1.25rem; stroke: var(--accent); flex-shrink: 0; }
.spec-label { font-size: 0.75rem; color: var(--muted-foreground); }
.spec-value { font-weight: 500; color: var(--foreground); }
.detail-btns { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.detail-btns a { flex: 1; min-width: 10rem; }
.detail-btns .btn { width: 100%; justify-content: center; height: 3rem; }

/* ─── ABOUT PAGE ─── */
.about-intro { padding: 4rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img { border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--border); }
.about-img img { width: 100%; height: auto; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--foreground); }
.about-text p { color: var(--muted-foreground); margin-top: 1rem; line-height: 1.7; }

.mission-section { background: hsl(220,14%,95%); padding: 5rem 0; }
.about-cta { padding: 5rem 0; text-align: center; }
.about-cta h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--foreground); }
.about-cta p { color: var(--muted-foreground); margin-top: 1rem; max-width: 32rem; margin-left: auto; margin-right: auto; }

/* ─── CONTACT PAGE ─── */
.contact-body { padding: 4rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 1fr; } }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-input, .form-select, .form-textarea {
  padding: 0.625rem 0.875rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--card);
  font-size: 0.875rem; font-family: inherit; color: var(--foreground);
  outline: none; transition: box-shadow 0.2s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { box-shadow: 0 0 0 2px hsla(45,80%,55%,0.3); }
.form-textarea { resize: vertical; min-height: 8rem; }
.form-space { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { background: var(--card); border-radius: 0.75rem; border: 1px solid var(--border); padding: 1.5rem; }
.contact-card h3 { font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info-item svg { width: 1.25rem; height: 1.25rem; stroke: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.contact-info-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.contact-info-value { font-size: 0.875rem; color: var(--muted-foreground); }
.contact-card-dark { background: var(--primary); border-radius: 0.75rem; padding: 1.5rem; }
.contact-card-dark h3 { font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.contact-card-dark p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.success-state { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.success-icon { width: 4rem; height: 4rem; border-radius: 9999px; background: #dcfce7; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.success-icon svg { width: 2rem; height: 2rem; stroke: #16a34a; }
.success-state h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.success-state p { color: var(--muted-foreground); margin-top: 0.75rem; max-width: 24rem; }

/* ─── SUPPLIERS PAGE ─── */
.suppliers-page { padding: 4rem 0; }
.supplier-detail-card { background: var(--card); border-radius: 0.75rem; border: 1px solid var(--border); padding: 2rem; transition: box-shadow 0.3s; margin-bottom: 2rem; }
.supplier-detail-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.supplier-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.supplier-header h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.supplier-inner { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .supplier-inner { flex-direction: row; align-items: flex-start; } }
.supplier-desc { flex: 1; color: var(--muted-foreground); line-height: 1.7; }
.supplier-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; font-size: 0.875rem; color: var(--muted-foreground); }
.supplier-meta-item { display: flex; align-items: center; gap: 0.375rem; }
.supplier-meta-item svg { width: 1rem; height: 1rem; stroke: var(--accent); }
.supplier-products { flex-shrink: 0; width: 100%; }
@media (min-width: 1024px) { .supplier-products { width: 16rem; } }
.supplier-products-label { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; }
.supplier-products-label svg { width: 1rem; height: 1rem; stroke: var(--accent); }
.specialty-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.specialty-tag { padding: 0.25rem 0.625rem; border-radius: 0.375rem; background: var(--muted); font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); }

.suppliers-cta { text-align: center; margin-top: 4rem; }

/* ─── FOOTER ─── */
.footer { background: var(--primary); color: rgba(255,255,255,0.8); }
.footer-inner { padding: 4rem 0; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }

.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 2.5rem; width: 2.5rem; border-radius: 0.5rem; object-fit: cover; }

.footer-col h4 { font-size: 0.75rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; stroke: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(1.25rem); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-1.875rem); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(1.875rem); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ─── LOADING ─── */
.spinner { width: 2rem; height: 2rem; border: 3px solid var(--muted); border-top-color: var(--accent); border-radius: 9999px; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-center { display: flex; justify-content: center; padding: 5rem 0; }

/* ─── ALERT ─── */
.alert { padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.875rem; margin-bottom: 1rem; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
