/* 認明正貨頁面專用樣式 */

.section-genuine {
  background-color: #e8e8e8;
  padding: 60px 0 80px;
  margin-top: 120px;
}

.section-genuine h1 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #00040c;
  margin-bottom: 50px;
}

.section-genuine h1 span {
  color: #ef4130;
}

/* 標題圖片 */
.genuine-title {
  text-align: left;
  margin-bottom: 50px;
}

.genuine-title img {
  width: clamp(200px,100%,300px);
  height: auto;
}

/* 產品卡片 */
.product-card {
  background: #ffffff;
  border: 8px solid #ef4130;
  border-left: 40px solid #ef4130;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
}

/* 卡片頭部 */
.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.product-card-header .product-logo {
  max-width: 200px;
  height: auto;
}

.product-card-header .quality-badge {
  max-width: 180px;
  height: auto;
}

/* 產品展示區域 */
.product-display-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.display-item {
  background: #d4e9f7;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

/* 一個display-item內包含兩張圖片 */
.display-item-images {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.display-item-images > img,
.display-item-images > picture {
  flex: 1;
  max-width: 50%;
}

.display-item-images > img,
.display-item-images > picture > img {
  max-height: 180px;
  object-fit: contain;
  width: 100%;
  height: auto;
}

/* 桌面端和移動端圖片顯隱控制 */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* 紅色標籤 */
.red-label {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #ef4130;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 0 0 12px 0;
  font-size: 21px;
  font-weight: 700;
  z-index: 1;
}

.display-item img {
  max-width: 100%;
  max-height: 180px;
  height: auto;
  object-fit: contain;
}

/* 藥片和註冊編號區域 - 並排顯示 */
.display-row-2cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* 底部說明區域 */
.product-card-footer {
  margin-top: 30px;
}

.product-description {
  font-size: 20px;
  line-height: 1.8;
  color: #00040c;
  margin: 25px 0;
  padding: 0 20px;
  font-weight: 500;
}

.product-description sub {
  font-size: 0.75em;
}

/* 底部包裝圖片 */
.package-images {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.package-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.package-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.package-highlight {
  display: inline-block;
  background: #c7e817;
  color: #00040c;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  margin-top: -40px;
  margin-bottom: 10px;
}

/* 頁面底部免責聲明 */
.genuine-disclaimer {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  padding: 0 20px;
}

.genuine-disclaimer sub {
  font-size: 0.75em;
}
.pill-images {
  text-align: center;
}
.pill-images img{
width: 80%;
}
@media (max-width: 1220px){
 .section-genuine {
   margin-top: 100px;
  }
}
/* 平板適配 (768px - 991px) */
@media (max-width: 991px) {
  .section-genuine {
    padding: 40px 0 60px;
  }

  .section-genuine h1 {
    font-size: 36px;
    margin-bottom: 35px;
  }

  .product-card {
    padding: 30px 20px;
  }

  .product-card-header .product-logo {
    max-width: 150px;
  }

  .product-card-header .quality-badge {
    max-width: 140px;
  }

  .red-label {
    font-size: 20px;
    /* padding: 6px 15px; */
  }

  .product-description {
    font-size: 15px;
  }
}

/* 移動端適配 (小於768px) */
@media (max-width: 767px) {
  .section-genuine {
    padding: 30px 0 40px;
    margin-top: 100px;
  }

  .section-genuine h1 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .genuine-title {
    margin-bottom: 25px;
  }

  .genuine-title img {
    max-width: 200px;
  }

  .product-card {
    padding: 20px;
    border-width: 5px;
    border-left-width: 20px;
  }

  .product-card-header {
    /* flex-direction: column; */
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .product-card-header .product-logo {
    max-width: 120px;
  }

  .product-card-header .quality-badge {
    max-width: 120px;
  }

  /* 移動端改為單列 */
  .product-display-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .display-item {
    min-height: 300px;
    padding: 50px 40px 60px;
  }

  .display-item-images{
    gap: 30px;
    flex-direction: column;
  }
  .display-item img {
           max-height: 300px;
        object-fit: cover;
        width: clamp(350px, 100%, 600px);
  }

  /* 註冊編號在移動端縮小顯示 */
  .registration-number img {
    max-height: 120px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .red-label {
    font-size: 20px;
  }

  .display-row-2cols {
    grid-template-columns: 1fr;
  }

  /* 移動端圖片顯隱切換 */
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .product-description {
    font-size: 18px;
    padding: 0 10px;
  }

  .package-images {
    flex-direction: column;
    gap: 20px;
  }

  .package-item {
    max-width: 100%;
  }

  .genuine-disclaimer {
    font-size: 13px;
  }
}

/* 超小屏適配 (小於480px) */
@media (max-width: 479px) {
  .section-genuine h1 {
    font-size: 24px;
  }

  .product-card {
    padding: 15px 10px;
  }

  .product-card-header .product-logo,
  .product-card-header .quality-badge {
    max-width: 100px;
  }

  .red-label {
    font-size: 12px;
    padding: 4px 10px;
  }

  .display-item {
    min-height: 170px;
    padding: 10px;
  }

  .product-description {
    font-size: 13px;
  }
}
