
    :root {
      --primary: #5e9880;
      --primary-dark: #558381;
      --primary-light: rgba(94, 152, 128, 0.15);
      --bg-gradient: #f8fcfb;
      --light: #aac7c5;
      --deep: #304a47;
      --surface: #ffffff;
      --surface-light: #f8fcfb;
      --text: #304a47;
      --text-muted: #94a3b8;
      --border: rgba(94,152,128,0.3);
      --success: #2ecc71;
      --shadow: rgba(48,74,71,0.12);
    }
    * {
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Inter',sans-serif;
    }
    body {
      background: linear-gradient(135deg, var(--bg-gradient) 0%, var(--light) 100%);
      color: var(--deep);
      min-height: 100vh;
      padding: 20px;
      padding-bottom: 100px;
      position: relative;
    }
    .bg {
      position:fixed;
      inset:0;
      background: radial-gradient(circle at 30% 30%, rgba(94,152,128,0.1), transparent 50%);
      pointer-events:none;
      z-index:0;
    }
    .container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* Translator - Fixed Top Right */
    .language-switcher {
      position: fixed;
      top: 20px;
      right: 20px;
      background: white;
      padding: 10px 14px;
      border-radius: 14px;
      box-shadow: 0 8px 25px var(--shadow);
      z-index: 1000;
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
    }

    @media (max-width: 640px) {
      .language-switcher {
        top: 12px;
        right: 12px;
        padding: 8px 10px;
      }
    }

    /* Compact header */
    .header {
      text-align: center;
      margin: 40px 0 32px;
      animation: fadeIn 1s;
    }
    @keyframes fadeIn {
      from { opacity:0; transform:translateY(20px); }
      to { opacity:1; transform:translateY(0); }
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 24px;
      background: rgba(94,152,128,0.1);
      border: 1px solid rgba(94,152,128,0.3);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 16px;
    }
    h1 {
      font-size: 36px;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 12px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .subtitle {
      font-size: 18px;
      color: var(--text-muted);
      opacity: 0.9;
    }

    /* Info bar */
    .info {
      background: var(--surface);
      backdrop-filter: blur(20px);
      padding: 20px 28px;
      border-radius: 20px;
      border: 1px solid var(--border);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 15px;
      font-weight: 600;
      box-shadow: 0 12px 30px var(--shadow);
    }
    .info i {
      color: var(--primary);
      font-size: 17px;
    }

    /* Search section */
    .search {
      background: var(--surface);
      backdrop-filter: blur(24px);
      border-radius: 24px;
      border: 1px solid var(--border);
      padding: 32px;
      margin-bottom: 32px;
      display: grid;
      grid-template-columns: 2fr 1fr auto;
      gap: 16px;
      box-shadow: 0 15px 35px var(--shadow);
    }
    input, select {
      width: 100%;
      padding: 16px 20px 16px 50px;
      background: rgba(248, 252, 251, 0.9);
      border: 2px solid var(--border);
      border-radius: 16px;
      color: var(--deep);
      font-size: 15px;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235e9880' stroke-width='2'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 20px center;
      background-color: rgba(248, 252, 251, 0.9);
      padding-right: 50px;
    }
    input:focus, select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px var(--primary-light);
      background: white;
    }
    .icon {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary);
      pointer-events: none;
      font-size: 17px;
    }
    .input-wrapper {
      position: relative;
    }

    /* Buttons */
    .btn {
      padding: 16px 36px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--surface);
      border: none;
      border-radius: 16px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(94,152,128,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(94,152,128,0.4);
    }

    /* Grid */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
      margin-bottom: 40px;
    }

    /* Cards */
    .card {
      background: var(--surface);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 30px var(--shadow);
    }
    .card:hover {
      transform: translateY(-8px);
      border-color: var(--primary);
      box-shadow: 0 20px 40px rgba(94,152,128,0.2);
    }
    .card::before {
      content:'';
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background: linear-gradient(90deg, var(--primary), var(--primary-dark));
      opacity:0;
      transition: opacity 0.3s;
    }
    .card:hover::before {
      opacity:1;
    }
    .card h3 {
      font-size: 24px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .price {
      font-size: 42px;
      font-weight: 800;
      color: var(--success);
      text-align: center;
      background: rgba(248, 252, 251, 0.8);
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 20px;
      border: 1px solid rgba(94,152,128,0.2);
    }
    .price small {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-muted);
      margin-left: 8px;
    }
    .detail {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      margin: 12px 0;
      padding: 10px 0;
      border-bottom: 1px solid rgba(94,152,128,0.1);
    }
    .detail:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .detail i {
      color: var(--primary);
      width: 22px;
      font-size: 15px;
    }
    .detail b {
      margin-left: auto;
      font-weight: 700;
      color: var(--deep);
    }
    .detail span {
      color: var(--text-muted);
      font-weight: 500;
    }

    /* Loading */
    .loading {
      display: none;
      text-align: center;
      padding: 80px 20px;
    }
    .spinner {
      width: 50px;
      height: 50px;
      border: 5px solid rgba(94,152,128,0.2);
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      margin: 0 auto 24px;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Empty state */
    .empty {
      text-align: center;
      padding: 80px 20px;
      grid-column: 1 / -1;
    }
    .empty-icon {
      width: 90px;
      height: 90px;
      background: rgba(94,152,128,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 44px;
      margin: 0 auto 28px;
      color: var(--primary);
    }
    .empty h3 {
      font-size: 26px;
      color: var(--deep);
      margin-bottom: 12px;
    }
    .empty p {
      color: var(--text-muted);
      font-size: 17px;
    }

    /* Supplier Floating Navigation Bar */
    .floating-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-around;
      padding: 12px 0;
      z-index: 1000;
      box-shadow: 0 -6px 25px var(--shadow);
      width: 100%;
      height: 76px;
      align-items: center;
    }

    .nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: var(--text-muted);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 10px 16px;
      border-radius: 16px;
      flex: 1;
      max-width: 130px;
    }

    .nav-item i {
      font-size: 23px;
      transition: all 0.3s ease;
    }

    .nav-item span {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
      text-align: center;
      font-size: 11.8px;
      line-height: 1.4;
    }

    .nav-item:hover {
      color: var(--primary);
      transform: translateY(-4px);
    }

    .nav-item.active {
      color: var(--primary-dark);
      background: var(--primary-light);
      transform: translateY(-7px);
      box-shadow: 0 -5px 18px rgba(94,152,128,0.22);
    }

    .nav-item.active i {
      font-size: 27px;
      color: var(--primary);
    }

    @media (max-width: 767px) {
      .floating-nav { height: 72px; }
      .nav-item i { font-size: 22px; }
      .nav-item.active i { font-size: 26px; }
      .nav-item span { font-size: 11.5px; }
      body { padding-bottom: 90px; }
    }

    @media (min-width: 768px) {
      .floating-nav { height: 80px; padding: 14px 40px; }
      .nav-item i { font-size: 25px; }
      .nav-item.active i { font-size: 29px; }
      .nav-item span { font-size: 12.5px; }
      body { padding-bottom: 100px; }
    }

    @media (max-width: 1024px) {
      .search {
        grid-template-columns: 1fr;
      }
      .grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      }
    }

    @media (max-width: 768px) {
      body {
        padding: 16px;
        padding-bottom: 100px;
      }
      .header {
        margin-top: 30px;
        margin-bottom: 28px;
      }
      h1 {
        font-size: 32px;
      }
      .subtitle {
        font-size: 17px;
      }
      .search {
        padding: 28px 20px;
      }
      .info {
        padding: 18px 20px;
      }
    }

    @media (max-width: 640px) {
      .header {
        margin: 50px 0 28px;
      }
      h1 {
        font-size: 30px;
      }
      .price {
        font-size: 38px;
        padding: 20px;
      }
      .card {
        padding: 20px;
      }
      .card h3 {
        font-size: 21px;
      }
      .grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 28px;
      }
      .badge {
        padding: 8px 18px;
        font-size: 12px;
      }
      .price {
        font-size: 36px;
      }
    }
    /* Google Translate Widget - Global Styles */
#google_translate_element {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.goog-te-gadget-simple {
  background-color: rgba(111, 165, 141, 0.15) !important;
  border: 1px solid rgba(111, 165, 141, 0.3) !important;
  border-radius: 30px !important;
  padding: 0 20px !important;
  height: 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #6FA58D !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease !important;
}

.goog-te-gadget-simple:hover {
  background-color: rgba(111, 165, 141, 0.25) !important;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(111, 165, 141, 0.2);
}

/* Hide Google branding */
.goog-te-gadget span a {
  display: none !important;
}

.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
  padding: 0 8px !important;
  background: transparent !important;
  border: none !important;
  color: #6FA58D !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  min-width: 120px;
}

/* Language dropdown styling */
.goog-te-menu-value {
  color: #6FA58D !important;
}

.goog-te-menu-value span {
  color: #6FA58D !important;
}

.goog-te-menu-value span:first-child {
  display: none !important;
}

.goog-te-menu-value span:last-child {
  border-left: none !important;
}

/* Dropdown arrow styling */
.goog-te-menu-value::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
  color: #6FA58D;
}

/* Hide the top bar that appears sometimes */
.goog-te-banner-frame {
  display: none !important;
}

/* Skip translation link */
.goog-te-balloon-frame {
  z-index: 10000 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #google_translate_element {
    top: 20px;
    right: 20px;
  }
  
  .goog-te-gadget-simple {
    height: 42px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }
  
  .goog-te-gadget .goog-te-combo {
    font-size: 13px !important;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  #google_translate_element {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
    width: auto !important;
    transform: none !important;
  }
  
  .goog-te-gadget-simple {
    height: 40px !important;
    padding: 0 14px !important;
    min-width: auto !important;
    max-width: 180px !important;
  }
  
  .goog-te-gadget .goog-te-combo {
    font-size: 12.5px !important;
    min-width: 90px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* For very small screens (below 360px) */
@media (max-width: 360px) {
  #google_translate_element {
    top: 12px !important;
    right: 12px !important;
  }
  
  .goog-te-gadget-simple {
    height: 38px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }
  
  .goog-te-gadget .goog-te-combo {
    font-size: 12px !important;
    min-width: 80px;
    max-width: 120px;
  }
}

/* Ensure it stays on top of all elements */
.goog-te-gadget {
  z-index: 9999 !important;
}

/* Fix for iframe positioning */
.goog-te-menu-frame {
  z-index: 10000 !important;
  position: fixed !important;
  margin-top: 5px !important;
}

/* Animation for smooth appearance */
@keyframes translateWidgetFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#google_translate_element {
  animation: translateWidgetFadeIn 0.4s ease-out;
}

/* Ensure it works on pages with different background colors */
.goog-te-gadget-simple {
  background-color: rgba(111, 165, 141, 0.15) !important;
}

/* Fix for dark mode compatibility */
@media (prefers-color-scheme: dark) {
  .goog-te-gadget-simple {
    background-color: rgba(111, 165, 141, 0.25) !important;
    border-color: rgba(111, 165, 141, 0.4) !important;
  }
}

/* Ensure dropdown appears above all content */
.goog-te-menu {
  z-index: 10001 !important;
  max-height: 300px !important;
  overflow-y: auto !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(111, 165, 141, 0.2) !important;
}
