* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn-primary {
  background-color: #fda401;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #ea580c;
}

.btn-secondary {
  border: 2px solid #fda401;
  color: #fda401;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #fda401;
  color: white;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 50;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

header .logo {
  flex-shrink: 0;
}

header .logo img {
  height: 50px;
  width: auto;
  display: block;
}

header nav {
  display: none;
  flex: 1;
  justify-content: flex-start;
}

header nav a {
  margin: 0 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
  white-space: nowrap;
}

header nav a:hover,
header nav a.active {
  color: #c41e3a;
}

header .header-icons {
  display: none;
  flex-shrink: 0;
  gap: 8px;
}

header .icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header #mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
}

header #mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

header #mobile-menu {
  display: none;
  padding: 16px;
  border-top: 1px solid #e5e7eb;
}

header #mobile-menu a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: color 0.3s;
}

header #mobile-menu a:hover,
header #mobile-menu a.active {
  color: #fda401;
}

footer {
  background-color: #fda401;
  color: white;
  padding: 32px 0;
}

footer .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  footer .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

footer h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

footer h4 {
  font-weight: 600;
  margin-bottom: 16px;
}

footer p {
  font-size: 14px;
  opacity: 0.8;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

footer ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

.hero-section {
  position: relative;
  height: calc(100vh - 70px);
  overflow: hidden;
  background-color: #fda401;
  display: flex;
  align-items: center;
}

.hero-section .content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 72px;
  }
}

.hero-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

.btn-hero {
  background-color: white;
  color: #fda401;
  padding: 12px 32px;
  border-radius: 20px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  width: fit-content;
}

.btn-hero:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s;
  z-index: 20;
}

.hero-arrow-left {
  left: 40px;
}

.hero-arrow-right {
  right: 40px;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 60vh;
    padding: 40px 0;
  }

  .hero-section .content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow-left {
    left: 10px;
  }

  .hero-arrow-right {
    right: 10px;
  }

  .hero-arrow svg {
    width: 24px;
    height: 24px;
  }
}

.products-section,
.oem-section,
.about-section {
  padding: 64px 0;
}

.products-section {
  background: white;
}

.products-section h2,
.about-section h2 {
  color: #1f2937;
}

.products-section .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .products-section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.products-section .card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.products-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.products-section .card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 20px;
}

.products-section .card .content {
  padding: 0 20px 20px 20px;
  text-align: center;
}

.products-section .card p {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.products-section .view-all {
  text-align: right;
  margin-top: 32px;
}

/* Product Detail Section */
.product-detail-section {
  padding: 40px 0 80px;
}

.product-detail-container {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  border: 2px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}

.thumbnail-item.active,
.thumbnail-item:hover {
  border-color: #fda401;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.product-main-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
}

.product-main-image img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.product-info-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.back-to-products-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #fda401;
  color: #fda401;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.back-to-products-btn:hover {
  background: #fda401;
  color: #fff;
}

.back-to-products-btn .back-icon {
  width: 18px;
  height: 18px;
}

.product-info-right h1 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 0.5px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 8px;
}

.spec-item svg {
  width: 28px;
  height: 28px;
  color: #f9a826;
}

.spec-item span {
  font-size: 12px;
  color: #666;
}

.spec-item strong {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.product-details-table {
  width: 100%;
  border-collapse: collapse;
}

.product-details-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  vertical-align: top;
}

.product-details-table td:first-child {
  width: 140px;
  font-weight: 600;
  color: #444;
  background: #f0f0f0;
  white-space: normal;
  line-height: 1.4;
}

.product-details-table td:last-child {
  color: #333;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-thumbnails {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    order: 2;
    padding-bottom: 10px;
  }

  .product-thumbnails::-webkit-scrollbar {
    height: 4px;
  }

  .product-thumbnails::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
  }

  .product-main-image {
    order: 1;
  }

  .product-info-right {
    order: 3;
  }

  .product-specs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .product-specs {
    grid-template-columns: 1fr;
  }
}

.btn-more {
  background-color: #fda401;
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
}

.btn-more:hover {
  background-color: #e89400;
  transform: translateY(-2px);
}

.oem-section {
  color: #333;
}

.oem-section .section-title {
  color: #333;
}

.oem-content {
  border-radius: 40px;
  padding: 32px;
  align-items: center;
  background-color: #fda401;
}
.oem-content-container{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .oem-content {
    width: calc(100vw - 18px);
  }
  .oem-content-container{
    grid-template-columns: 1fr 1fr;
    max-width: 1280px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .oem-content {
    border-radius: 20px;
    padding: 20px;
  }
  
  .oem-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .oem-text {
    font-size: 12px;
  }
  
  .oem-section {
    padding: 32px 0;
  }
}

.oem-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.oem-images .img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.oem-images .img img{
  width: 100%;
  height: 100%;
}

.oem-text {
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
  font-family: 'Times New Roman', serif;
}

.oem-text p {
  margin-bottom: 8px;
}

.oem-text strong {
  font-weight: 600;
}

.oem-section .view-all {
  text-align: right;
  margin-top: 24px;
}

.about-section {
  background: white;
}

.about-video {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-video video {
  width: 100%;
  display: block;
  background: #f5f5f5;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s;
}

.play-button:hover {
  transform: scale(1.1);
  background: white;
}

.play-button svg {
  width: 36px;
  height: 36px;
  color: #fda401;
  margin-left: 4px;
}

.about-section .view-all {
  text-align: right;
  margin-top: 32px;
}

.products-hero, .oem-hero {
  position: relative;
  background: #fda401;
  text-align: center;
}

.products-hero {
  height: calc(100vh - 70px);
}

.oem-hero {
  height: calc(100vh - 70px);
  overflow: hidden;
}

.products-hero .container, .oem-hero .container {
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oem-hero .container {
  max-width: none;
}

.products-hero .hero-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.oem-hero .hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.products-hero .hero-content, .oem-hero .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .products-hero {
    height: auto;
    min-height: 400px;
  }
  
  .products-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .products-hero .hero-content {
    padding: 0 20px;
  }
  
  .products-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .oem-hero {
    height: auto;
    min-height: 400px;
  }
  
  .oem-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .oem-hero .hero-content {
    padding: 0 20px;
  }
  
  .oem-hero h1 {
    font-size: 36px;
  }
  
  .oem-hero h4 {
    font-size: 12px;
    padding: 0 10px;
  }
}

.products-hero h1, .oem-hero h1 {
  font-size: 72px;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('static/4.jpg');
  background-size: cover;
  background-position: center;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.about-hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.company-name {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  padding: 8px 24px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  letter-spacing: 1px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-stat-card {
  background: white;
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('static/1.jpg') center/cover;
  opacity: 0.3;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 24px;
  font-weight: 600;
  color: #fda401;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.stat-desc {
  font-size: 14px;
  color: #666;
  position: relative;
  z-index: 1;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transform: rotate(-2deg);
  transition: transform 0.3s;
}

.cert-card:nth-child(2) {
  transform: rotate(2deg);
}

.cert-card:nth-child(3) {
  transform: rotate(-1deg);
}

.cert-card:nth-child(4) {
  transform: rotate(1deg);
}

.cert-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.cert-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.breadcrumb {
  background: #f5f5f5;
  padding: 12px 0;
  font-size: 14px;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #fda401;
}

.breadcrumb span {
  color: #666;
}

.breadcrumb span.divider {
  margin: 0 8px;
  color: #999;
}

@media (max-width: 768px) {
  .breadcrumb {
    font-size: 12px;
    padding: 10px 0;
  }
  
  .breadcrumb .container {
    flex-wrap: nowrap;
    gap: 4px;
    padding: 0 15px;
    overflow: auto;
  }

  .breadcrumb .container::-webkit-scrollbar {
    display: none;
  }
  
  .breadcrumb span.divider {
    margin: 0 4px;
  }

  .breadcrumb span{
    white-space: nowrap;
  }
}

/* Shared Products Tabs Container */
.products-tabs-container {
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.products-tabs-container .container {
  padding: 0;
}

.products-tabs {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.products-tabs .tab {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.products-tabs .tab:hover {
  color: #fda401;
}

.products-tabs .tab.active {
  background: #fda401;
  color: white;
  border-radius: 4px 4px 0 0;
}

.products-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 0;
}

.products-grid.active {
  display: grid;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-card img:nth-child(1) {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 24px;
}

.product-images {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.product-img-big {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15%;
}

.product-img-small {
  position: absolute;
  bottom: 5%;
  right: 1%;
  width: 50%;
  height: auto;
  object-fit: contain;
}

.product-info {
  padding: 16px;
  text-align: center;
}

.product-info h3 {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 48px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.oem-packaging-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 0;
}

.oem-packaging-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding: 20px;
}

.oem-packaging-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.packaging-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.oem-packaging-name {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
}

.oem-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.oem-stat-item {
  text-align: center;
}

.oem-stat-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.oem-stat-label {
  opacity: 0.9;
}

.oem-noodles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.oem-noodles-grid > img {
  width: 100%;
  height: auto;
  display: block;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}

.company-image-shadow {
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2);
}

.faq-section {
  padding: 40px 0;
}

.faq-section .container {
  max-width: 1280px;
  background: #fda401;
}

.faq-content {
  color: #000;
  padding-bottom: 0;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #fff;
}

.faq-subtitle {
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 24px;
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

.faq-answer u {
  font-weight: 700;
}

@media (max-width: 768px) {
  .faq-images {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-title {
    font-size: 32px;
  }
  
  .faq-question,
  .faq-answer {
    font-size: 14px;
  }
}

.about-footer {
  background: #fda401;
  color: #fff;
  padding: 40px 0 0;
}

.about-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.about-footer .footer-section h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: #c41e3a;
}

.about-footer .footer-section ul {
  list-style: none;
  padding: 0;
}

.about-footer .footer-section ul li {
  margin-bottom: 8px;
}

.about-footer .footer-section ul li a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.about-footer .footer-section ul li a:hover {
  color: #c41e3a;
}

.about-footer .footer-section p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.about-footer .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-footer .footer-logo img {
  height: 60px;
  width: auto;
}

.about-footer .copyright {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 0;
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 768px) {
  .about-footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .about-footer .footer-logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .about-footer .footer-content {
    grid-template-columns: 1fr;
  }
}

.exhibition-section {
  text-align: center;
  padding: 64PX 0;
}

.exhibition-container-title{
  background: #fda401;
  padding: 60px 0 300px;
}

.exhibition-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.exhibition-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  font-weight: bold;
}

.exhibition-section img{
  margin-top: -230px;
}

@media (max-width: 768px) {
  .exhibition-container-title {
    padding: 40px 0 200px;
  }
  
  .exhibition-title {
    font-size: 24px;
  }
  
  .exhibition-subtitle {
    font-size: 12px;
  }
  
  .exhibition-section img {
    margin-top: -150px;
    width: 100%;
    height: auto;
  }
  
  .exhibition-section {
    padding: 32px 0;
  }
}

.oem-noodle-card {
  text-align: center;
}

.oem-noodle-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: white;
}

.oem-noodle-name {
  padding: 12px 0;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
}

.oem-flavors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.oem-flavor-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.oem-flavor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.oem-flavor-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  padding: 12px;
  background: #fafafa;
  border-radius: 50%;
}

.oem-flavor-name {
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  line-height: 1.3;
}

.oem-flavors-subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin: 32px 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exporting-section {
  background: white;
  padding: 60px 0;
  text-align: center;
}

.exporting-title {
  font-size: 36px;
  font-weight: 700;
  color: #fda401;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.exporting-subtitle {
  font-size: 14px;
  color: #fda401;
  letter-spacing: 2px;
  border-bottom: 1px solid #fda401;
  display: inline-block;
  font-weight: bold;
}

.exporting-map {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 40px auto 0;
  display: block;
}

.exporting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.exporting-item {
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid #fda401;
}

.exporting-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 48px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .oem-noodles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-flavors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .oem-packaging-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-hero h1 {
    font-size: 48px;
  }

  .about-hero {
    height: 300px;
  }

  .about-hero-content h1 {
    font-size: 48px;
  }

  .company-name {
    font-size: 12px;
    padding: 6px 16px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .oem-noodles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .oem-flavors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .oem-packaging-grid {
    grid-template-columns: 1fr;
  }

  .oem-stats-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

  .oem-packaging-grid {
    grid-template-columns: 1fr;
  }

  .oem-stats-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  padding: 48px 0;
  background: #f9fafb;
}

.contact-section h2 {
  color: #1f2937;
}

.contact-section form {
  max-width: 512px;
  margin: 0 auto;
}

.contact-section .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .contact-section .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: #fda401;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.contact-section textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-section button {
  width: 100%;
  padding: 12px;
  background: #fda401;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-section button:hover {
  background: #ea580c;
}

/* Search Modal */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  padding: 80px 20px 20px;
}

.search-modal.active {
  display: block;
}

.search-modal-content {
  max-width: 800px;
  margin: 0 auto;
}

.search-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.3s;
}

.search-modal-close:hover {
  opacity: 0.8;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 32px;
}

.search-input-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #999;
}

.search-input {
  width: 100%;
  padding: 16px 16px 16px 56px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.search-results {
  background: white;
  border-radius: 8px;
  max-height: 60vh;
  overflow-y: auto;
}

.search-results-title {
  padding: 16px 20px;
  font-weight: 600;
  color: #666;
  border-bottom: 1px solid #eee;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s;
}

.search-result-item:hover {
  background-color: #f9fafb;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-icon {
  width: 40px;
  height: 40px;
  background: #fda401;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.search-result-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.search-result-content {
  flex: 1;
}

.search-result-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.search-result-description {
  font-size: 14px;
  color: #666;
}

.search-result-page {
  font-size: 12px;
  color: #fda401;
  margin-top: 4px;
}

.search-no-results {
  padding: 40px 20px;
  text-align: center;
  color: #666;
}

@media (min-width: 768px) {
  header nav {
    display: flex;
    align-items: center;
  }

  header .header-icons {
    display: flex;
    align-items: center;
  }

  header #mobile-menu-btn {
    display: none;
  }
}
