/* ============================================================
   Siddha Perfect Systems – Shared Design System
   Blue #004080 | Green #28a745 | Chrome #e5e7eb
   Font: Manrope | Rounded cards | Premium B2B industrial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=block');

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background-color: #f5f7f8;
  color: #0f172a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  --primary: #004080;
  --primary-dark: #003066;
  --primary-light: #1a6bb5;
  --green: #28a745;
  --green-dark: #1e7a35;
  --bg-light: #f5f7f8;
  --bg-dark: #0f1923;
  --chrome: #e5e7eb;
  --chrome-dark: #d1d5db;
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-light: #475569;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- TYPOGRAPHY ---------- */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
}

p {
  color: var(--text-mid);
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .85rem;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge-green {
  background: rgba(40, 167, 69, .12);
  color: var(--green);
  border: 1px solid rgba(40, 167, 69, .25);
}

.badge-blue {
  background: rgba(0, 64, 128, .08);
  color: var(--primary);
  border: 1px solid rgba(0, 64, 128, .2);
}

.badge-chrome {
  background: var(--chrome);
  color: var(--text-mid);
  border: 1px solid var(--chrome-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 64, 128, .25);
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(40, 167, 69, .3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--chrome);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Chrome metallic gradient */
.chrome-gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--chrome) 50%, var(--chrome-dark) 100%);
}

/* Section spacing */
.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 3rem 0;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, .7);
  box-shadow: 0 1px 8px rgba(0, 0, 0, .04);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .navbar-inner {
    padding: 0 3rem;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1.1;
}

.nav-logo-text .sub {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-light);
}

.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(0, 64, 128, .06);
}

.nav-links a.active {
  color: var(--primary);
  background: rgba(0, 64, 128, .08);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn-chat {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--green);
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-chat:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 16px rgba(40, 167, 69, .35);
}

.btn-contact-supplier {
  display: none;
  align-items: center;
  gap: .4rem;
  background: var(--primary);
  color: #fff;
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 700;
  transition: var(--transition);
}

@media (min-width: 900px) {
  .btn-contact-supplier {
    display: flex;
  }
}

.btn-contact-supplier:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0, 64, 128, .3);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: 90px 1.5rem 2rem;
  flex-direction: column;
  gap: .5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: .85rem 1rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--chrome);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-wrap img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.footer-brand .logo-wrap span {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 280px;
}

.footer h5 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer ul li a {
  font-size: .875rem;
  color: #94a3b8;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--green);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer-contact-item .material-symbols-outlined {
  color: var(--green);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.footer-contact-item p {
  font-size: .875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: .75rem;
  color: #64748b;
}

.footer-bottom .links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom .links a {
  font-size: .75rem;
  color: #64748b;
  transition: var(--transition);
}

.footer-bottom .links a:hover {
  color: var(--green);
}

.gst-badge {
  font-size: .7rem;
  font-weight: 700;
  font-family: monospace;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .2rem .65rem;
  border-radius: var(--radius-sm);
  color: #94a3b8;
}

/* ---------- COMPANY STRIP ---------- */
.company-strip {
  background: var(--white);
  border-top: 3px solid var(--primary);
  border-bottom: 1px solid var(--chrome);
  padding: 1.5rem 0;
}

.company-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

@media (min-width: 1024px) {
  .company-strip-inner {
    padding: 0 3rem;
  }
}

.strip-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.strip-item .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.1rem;
}

.strip-item strong {
  color: var(--primary);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  font-size: .975rem;
}

.accent-bar {
  width: 48px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: .75rem auto 0;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 32, 64, .85) 0%, rgba(0, 64, 128, .45) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .page-hero-content {
    padding: 0 3rem;
  }
}

.page-hero-content .breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.page-hero-content .breadcrumb span {
  color: rgba(255, 255, 255, .4);
}

.page-hero-content h1 {
  color: #fff;
  margin-bottom: .5rem;
}

.page-hero-content p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 540px;
}

/* ---------- MATERIAL SYMBOLS ---------- */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ---------- ANIMATIONS ---------- */
@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--chrome);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .35rem;
}

.product-card-body p {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1.1rem;
}

.product-card .btn-outline {
  width: 100%;
  font-size: .8rem;
  padding: .65rem;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 64, 128, .4) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- INQUIRY FORM ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-mid);
  margin-bottom: .5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--chrome);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 64, 128, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- STATS CARD ---------- */
.stats-float {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto 0;
  padding: 0 1.5rem;
}

@media (min-width:1024px) {
  .stats-float {
    padding: 0 3rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--chrome);
  border-bottom: 4px solid var(--primary);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(0, 64, 128, .06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.stat-icon .material-symbols-outlined {
  font-size: 1.75rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.03em;
}

.stat-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-top: .2rem;
}

/* scroll reveal fade */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* ── Single-line navbar brand ── */
.brand-single {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ── Products hover dropdown (all pages) ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--chrome);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  padding: 0.5rem 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

/* ── Navbar search button (all pages) ── */
.nav-search-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1.5px solid var(--chrome);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-search-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.nav-search-btn .material-symbols-outlined {
  font-size: 1.1rem;
}

/* ── Product page search bar ── */
/* ── Product page search bar ── */
.prod-search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1.5px solid var(--chrome);
  border-radius: 50px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: border-color .2s;
  max-width: 100%;
}

.prod-search-bar:focus-within {
  border-color: var(--primary);
}

.prod-search-bar .search-icon-left {
  color: var(--text-light);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.prod-search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-dark);
}

.prod-search-bar input::placeholder {
  color: var(--text-light);
}

.prod-search-bar .search-btn-right {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-search-bar .search-btn-right .material-symbols-outlined {
  font-size: 1.3rem;
  color: #fff;
}