  .product-page-container {
      padding: 40px 20px 10px 10px;
  }

  .product-main {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
  }

  .product-gallery {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .product-main-image {
      width: 100%;
      height: 500px;
      background: #f5f5f5;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }

  .product-main-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }

  .product-thumbnails {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
      gap: 10px;
  }

  .product-thumbnail {
      width: 80px;
      height: 80px;
      background: #f5f5f5;
      border: 2px solid #eee;
      border-radius: 6px;
      cursor: pointer;
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .product-thumbnail:hover {
      border-color: #00B853;
  }

  .product-thumbnail.active {
      border-color: #035E8C;
      background: #f0f9f5;
  }

  .product-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }

  .product-info-section {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .product-breadcrumb {
      font-size: 12px;
      color: #999;
      margin-bottom: 10px;
  }

  .product-breadcrumb a {
      color: #035E8C;
      text-decoration: none;
  }

  .product-page-title {
      font-size: 28px;
      font-weight: 600;
      color: #333;
      margin: 0;
  }

  .product-page-rating {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .product-page-rating .stars {
      display: flex;
      gap: 2px;
  }

  .product-page-rating .star {
      font-size: 14px;
      color: #ddd;
  }

  .product-page-rating .star.filled {
      color: #FFC107;
  }

  .product-page-rating .star.half {
      background: linear-gradient(90deg, #FFC107 50%, #ddd 50%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .product-page-rating .reviews-link {
      color: #035E8C;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
  }

  .product-page-price {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 20px 0;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
  }

  .price-current {
      font-size: 32px;
      font-weight: 700;
      color: #035E8C;
  }

  .price-current-mini {
      font-size: 24px;
      font-weight: 700;
      color: #035E8C;
  }		

  .purpose {
      font-size: 26px;
      font-weight: 400;
      color: #5F5F5F;
  }		

  .price-original {
      font-size: 22px;
      color: #999;
      text-decoration: line-through;
  }

  .price-original-mini {
      font-size: 16px;
      color: #999;
      text-decoration: line-through;
  }		

  .price-discount {
      background: #FF6B6B;
      color: white;
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
  }

  .product-page-description {
      color: #666;
      line-height: 1.6;
      font-size: 14px;
  }

  .product-page-availability {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px;
      background: #f0f9f5;
      border-radius: 6px;
      border-left: 4px solid #00B853;
  }

  .product-page-availability .status {
      color: #035E8C;
      font-weight: 600;
      font-size: 14px;
  }

  .product-page-availability .quantity {
      color: #666;
      font-size: 12px;
  }

  .product-page-actions {
      display: flex;
      gap: 10px;
  }

  .btn-add-to-cart-page {
      flex: 1;
      padding: 14px 20px;
      background: #035E8C;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
  }

  .btn-add-to-cart-page:hover {
      background: #035E8C;
  }

  .btn-wishlist-page {
      padding: 14px 20px;
      background: #f5f5f5;
      color: #333;
      border: 1px solid #ddd;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
  }

  .btn-wishlist-page:hover {
      background: #e0e0e0;
  }

  .btn-whatsapp-page {
      flex: 1;
      padding: 14px 20px;
      background: #25D366;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
      text-decoration: none;
  }

  .btn-whatsapp-page:hover {
      background: #1FAE52;
  }

  .product-seller-card {
      background: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
      margin-top: 20px;
  }

  .seller-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
  }

  .seller-info {
      display: flex;
      gap: 15px;
      align-items: center;
  }

  .seller-logo {
      width: 60px;
      height: 60px;
      background: white;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      border: 1px solid #eee;
      overflow: hidden;
  }

  .seller-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .seller-details h4 {
      margin: 0 0 5px 0;
      font-size: 15px;
      color: #333;
  }

  .seller-details .stars {
      display: flex;
      gap: 2px;
      font-size: 12px;
  }

  .seller-details .star {
      color: #ddd;
  }

  .seller-details .star.filled {
      color: #FFC107;
  }

  .seller-link {
      color: #035E8C;
      text-decoration: none;
      font-weight: 600;
      font-size: 13px;
  }

  .seller-link:hover {
      text-decoration: underline;
  }

  /* Abas */
  .product1-tabs-container {
      margin-top: 60px;
      border-top: 1px solid #eee;
  }

.product-tabs-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

  .product-tabs-header {
      display: flex;
      gap: 0;
      border-bottom: 2px solid #eee;
      margin-bottom: 30px;
  }

  .product1-tab-btn {
      padding: 15px 30px;
      background: none;
      border: none;
      cursor: pointer;
      font-weight: 600;
      color: #666;
      font-size: 14px;
      border-bottom: 3px solid transparent;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
  }

.product-tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
	border-bottom: 3px solid transparent;	
}

  .product-tab-btn:hover {
    color: #035E8C;
    background: white;
  }

  .product-tab-btn.active {
      color: #035E8C;
      border-bottom-color: #035E8C;
  }

  .product1-tab-content {
      display: none;
  }

  .product1-tab-content.active {
      display: block;
  }

	.product-tab-content {
		display: none;
		padding: 30px;
		animation: fadeIn 0.3s ease;
	}

	.product-tab-content.active {
		display: block;
	}

  .tab-description {
      line-height: 1.8;
      color: #555;
      text-align: justify;
  }

  .tab-description h3 {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-top: 30px;
      margin-bottom: 15px;
  }

  .tab-description h3:first-child {
      margin-top: 0;
  }

  .tab-description p {
      margin-bottom: 15px;
  }

  .tab-description ul {
      margin-left: 20px;
      margin-bottom: 15px;
  }

  .tab-description li {
      margin-bottom: 8px;
  }

  .reviews-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .review-item {
      padding: 20px;
      background: #f9f9f9;
      border-radius: 6px;
  }

  .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
  }

  .review-author {
      font-weight: 600;
      color: #333;
      font-size: 14px;
  }

  .review-date {
      color: #999;
      font-size: 12px;
  }

  .review-rating {
      margin-bottom: 10px;
  }

  .review-rating .stars {
      display: flex;
      gap: 2px;
  }

  .review-rating .star {
      font-size: 12px;
      color: #ddd;
  }

  .review-rating .star.filled {
      color: #FFC107;
  }

  .review-text {
      color: #666;
      font-size: 13px;
      line-height: 1.6;
      margin: 0;
  }

  .empty-state {
      text-align: center;
      padding: 40px;
      color: #999;
  }

  .empty-state-icon {
      font-size: 48px;
      margin-bottom: 15px;
  }

  .seller-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 20px;
  }

  .seller-info-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
  }

  .seller-info-label {
      font-size: 12px;
      color: #999;
      font-weight: 600;
      text-transform: uppercase;
  }

  .seller-info-value {
      font-size: 14px;
      color: #333;
      font-weight: 600;
  }

	.related-products-container {
		background: white;
		border-radius: 12px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		overflow: hidden;
		margin-bottom: 40px;
	}

  .related-products {
      padding: 30px;
  }

  .related-products-title {
      font-size: 22px;
      font-weight: 600;
      color: #333;
      margin-bottom: 30px;
  }

  .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
  }

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

      .product-main-image {
          height: 350px;
      }

      .product-page-title {
          font-size: 22px;
      }

      .price-current {
          font-size: 38px;
      }

      .price-current-mini {
          font-size: 20px;
      }			

      .purpose {
          font-size: 18px;
      }			

      .product-tabs-header {
          flex-wrap: wrap;
      }

      .product-tab-btn {
          padding: 12px 20px;
          font-size: 12px;
      }

      .product-page-actions {
          flex-direction: column;
      }

      .btn-add-to-cart-page,
      .btn-whatsapp-page {
          width: 100%;
      }

      .seller-info-grid {
          grid-template-columns: 1fr;
      }

      .products-grid {
          grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }
  }