.product-detail{
	/* max-width: 750px; */ 
}
.header-bar {
  background-color: #d3b367;
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
  margin: 0 auto;
}

.header-bar a {
  color: white;
  text-decoration: none;
}

.product-header {
  border-bottom: 1px solid #e6e6e6;
  padding: 20px 0;
}

.product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.price-section {
  background-color: #f9f9f9;
  border: 1px solid #f9f9f9;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}

.price-tag {
  color: #d3b367;
  font-size: 2.2rem;
  font-weight: 700;
}


.detail-section {
  margin: 40px 0;
  padding: 0;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  border-left: 4px solid #d3b367;
  padding-left: 15px;
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 15px;
  width: 60px;
  height: 3px;
  background-color: #d3b367;
}



.factory-showcase {
  padding: 30px;
  margin: 20px 0px;
  background-position: center;
  background-size: cover;
}

.factory-badge {
  background-color: #d3b367;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

.factory-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .factory-features {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  background-color: rgba(255,255,255,0.99);
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid #d3b367;
}

.feature-icon svg {
  font-size: 2.2rem;
  height: 45px;
  width: 45px;
  color: #d3b367;
  margin-bottom: 15px;
}

.feature-icon svg path {
  fill: #d3b367;
}



.certification-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.certification-item {
  width: 120px;
  height: 60px;
  background-color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  font-weight: 600;
  color: #555;
}



.poster-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  padding: 40px 15px;
  margin: 30px 0;
  /*border-radius: 8px;*/
  position: relative;
  overflow: hidden;
}

.poster-badge {
  position: absolute;
  top: 40px;
  right: 20px;
  background-color: #d3b367;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  transform: rotate(15deg);
  box-shadow: 0 5px 15px rgba(255,106,0,0.3);
}

.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.product-feature {
  text-align: center;
  padding: 15px;
  background-color: rgba(255,255,255,0.9);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}


.color-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.color-option {
  width: 90px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.color-option:hover {
  transform: translateY(-5px);
}

.color-sample {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 3px solid #eee;
  transition: border-color 0.3s, transform 0.3s;
}


.size-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.size-table th {
  background-color: #f8f8f8;
  padding: 14px;
  text-align: center;
  font-weight: 600;
}

.size-table td {
  padding: 14px;
  text-align: center;
  border-top: 1px solid #e6e6e6;
}

.size-table tr:nth-child(even) {
  background-color: #fcfcfc;
}
.pro-table{
	width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch;
}

.facility-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
	margin-bottom: 20px;
}

.facility-item {
  text-align: center;
}

.facility-img {
  width: 100%;
  object-fit: cover;
  /*border-radius: 8px;*/
  margin-bottom: 10px;
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.08);*/
}



.multi-angle-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 30px 0;
}

.angle-item {
  /*border-radius: 10px;*/
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angle-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.angle-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.angle-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 20px 20px;
  font-size: 0.95rem;
}

.angle-desc h5 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}



.custom-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background-color: white;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background-color: #d3b367;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-icon {
  font-size: 2.3rem;
  color: #d3b367;
  margin-bottom: 10px;
}


.faq-section {
  background-color: #f9f9f9;
  /*border-radius: 10px;*/
  padding: 30px;
  margin: 40px 0;
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background-color: #f8f8f8;*/
  color: #d3b367;
  cursor: pointer;
}

.faq-answer {
  padding: 25px;
  display: block;
  border-top: 1px solid #e6e6e6;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}


.custom-note {
  width: 100%;
  background-color: #f9f9f9;
  /*border-left: 4px solid #3498db;*/
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
}

.custom-note h5 {
  color: #d3b367;
  margin-bottom: 15px;
}

.company-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .company-advantages {
    grid-template-columns: 1fr;
  }
}

.advantage-item {
  background-color: rgba(255,255,255,0.99);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-top: 4px solid #d3b367;
}

.advantage-icon svg {
  height: 45px;
  width: 45px;
  color: #d3b367;
  margin-bottom: 15px;
  text-align: left;
}

.advantage-icon svg path {
  fill: #d3b367;
}

.card {
  background: rgba(255,255,255,0.88);
  padding: 20px;
  margin: 40px;
}


@media (max-width: 768px) {
  .header-bar {
    max-width: 100%;
  }
	.card{ margin: 0px;}
}

@media (max-width: 768px) {
  .custom-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .facility-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}



.company-intro {
  background: url("/692fad1e99b48.jpg") center / cover no-repeat;
}

.company-badge {
  /*color: #fff;*/
}

.company-intro {
  padding: 25px;
  color: #fff;
}


